:root {
  color-scheme: light;
  --ink: #111417;
  --muted: #5b626a;
  --paper: #f6f7f2;
  --panel: #ffffff;
  --line: #d9ded8;
  --gold: #c99b48;
  --gold-dark: #8b5d1e;
  --teal: #1f7a70;
  --blue: #263f63;
  --dark: #090a0c;
  --dark-soft: #17191d;
  --danger: #8a3b2d;
  --success: #1f6f4f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--paper);
  color: var(--ink);
}

a {
  color: inherit;
}

.store-shell {
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto;
}

.store-nav {
  min-height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 0;
}

.brand-logo,
.brand-icon {
  width: 74px;
  height: 74px;
  flex: 0 0 74px;
  border-radius: 8px;
  background: var(--dark);
  border: 1px solid rgba(201, 155, 72, .7);
  object-fit: cover;
  box-shadow: 0 12px 26px rgba(17, 20, 23, .18);
}

.brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 800;
}

.brand-mark strong,
.brand-mark small {
  display: block;
}

.brand-mark strong {
  font-size: 23px;
}

.brand-mark small {
  color: var(--muted);
  font-size: 14px;
  margin-top: 2px;
}

.nav-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.nav-link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  background: rgba(255, 255, 255, .72);
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
}

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

.hero-store {
  min-height: min(760px, calc(100vh - 98px));
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(560px, 1.22fr);
  gap: 32px;
  align-items: center;
  padding: 34px 0 46px;
}

.hero-copy {
  min-width: 0;
}

.hero-brand-visual {
  margin: 0;
  min-width: 0;
}

.hero-brand-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid rgba(201, 155, 72, .5);
  box-shadow: 0 28px 70px rgba(17, 20, 23, .2);
  background: var(--dark);
}

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

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 78px);
  line-height: .96;
}

h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.06;
}

h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.18;
}

.lead {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
  max-width: 660px;
}

.hero-actions,
.section-actions,
.home-support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid var(--dark);
  border-radius: 8px;
  background: var(--dark);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.button.primary {
  background: var(--dark);
  color: #fff;
  box-shadow: 0 12px 22px rgba(17, 20, 23, .15);
}

.button.secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.button.full {
  width: 100%;
}

.button:disabled {
  opacity: .55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0 0 38px;
  border: 1px solid var(--line);
  background: var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.trust-strip div {
  background: #fff;
  padding: 18px;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--ink);
}

.trust-strip span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 18px;
  margin: 46px 0 18px;
}

.section-heading[id] {
  scroll-margin-top: 126px;
}

.section-heading p {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.55;
}

.app-grid {
  display: grid;
  gap: 22px;
  padding-bottom: 54px;
}

.app-card {
  display: grid;
  grid-template-columns: minmax(280px, .88fr) minmax(0, 1fr);
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 22px 54px rgba(17, 20, 23, .08);
}

.app-card-image {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  background: #ecefeb;
}

.app-card-body {
  padding: 28px;
}

.app-card-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.app-card-kicker span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.app-card-body p {
  color: var(--muted);
  line-height: 1.55;
  margin: 14px 0 0;
}

.feature-list {
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  line-height: 1.4;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}

.purchase-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  background: #fbfcfa;
}

.purchase-panel > div {
  padding: 24px;
}

.purchase-panel > div + div {
  border-left: 1px solid var(--line);
}

.purchase-panel p {
  color: var(--muted);
  line-height: 1.45;
}

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

.compact-form {
  margin-top: 16px;
}

.store-form label {
  display: grid;
  gap: 6px;
  font-weight: 800;
  font-size: 13px;
}

.store-form input,
.store-form select,
.store-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.store-form textarea {
  min-height: 140px;
  resize: vertical;
}

.span-full {
  grid-column: 1 / -1;
}

.support-guard {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.store-form input:focus,
.store-form select:focus,
.store-form textarea:focus {
  outline: 2px solid rgba(31, 122, 112, .35);
  outline-offset: 2px;
}

.simple-panel,
.support-section,
.policy-panel {
  max-width: 920px;
  margin: 34px auto 64px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 22px 54px rgba(17, 20, 23, .08);
}

.simple-panel h1,
.support-section h1,
.policy-panel h1 {
  font-size: clamp(34px, 5vw, 58px);
}

.simple-panel > p,
.support-section p,
.policy-panel p {
  color: var(--muted);
  line-height: 1.55;
}

.setup-list,
.policy-grid,
.compact-support-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
}

.setup-list > div,
.policy-grid > div,
.compact-support-list > div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfa;
  padding: 16px;
}

.setup-list span,
.policy-grid span,
.compact-support-list span {
  display: block;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.setup-list strong,
.policy-grid strong,
.compact-support-list strong {
  display: block;
  margin-top: 7px;
}

.setup-list small,
.policy-grid small,
.compact-support-list small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.45;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.support-section {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, 1.15fr);
  gap: 28px;
  max-width: 1120px;
}

.support-copy h1 {
  margin-top: 0;
}

.support-card {
  min-width: 0;
}

.customer-results {
  margin-top: 28px;
}

.delivery-card {
  display: grid;
  grid-template-columns: minmax(120px, .42fr) minmax(0, 1fr);
  gap: 10px 16px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

.delivery-card span {
  color: var(--muted);
}

.delivery-card strong {
  overflow-wrap: anywhere;
}

.delivery-card .button {
  grid-column: 1 / -1;
}

.form-status,
.notice {
  margin-top: 20px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff8e8;
  color: var(--ink);
  padding: 14px;
}

.form-status strong,
.form-status span,
.notice strong,
.notice span {
  display: block;
}

.form-status span,
.notice span {
  color: var(--muted);
  margin-top: 4px;
}

.fine-print {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.store-footer {
  border-top: 1px solid var(--line);
  padding: 24px 18px 40px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.store-footer a {
  color: var(--ink);
  font-weight: 800;
}

@media (max-width: 920px) {
  .hero-store,
  .app-card,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero-store {
    min-height: auto;
    padding-top: 20px;
  }

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

@media (max-width: 680px) {
  .store-shell {
    width: min(100% - 24px, 560px);
  }

  .section-heading[id] {
    scroll-margin-top: 248px;
  }

  .store-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .nav-link {
    flex: 1 1 auto;
  }

  .quick-app,
  .purchase-panel,
  .trust-strip,
  .delivery-card,
  .setup-list,
  .policy-grid,
  .compact-support-list,
  .support-section {
    grid-template-columns: 1fr;
  }

  .purchase-panel > div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .app-card-image {
    min-height: 240px;
  }

  .brand-logo,
  .brand-icon {
    width: 62px;
    height: 62px;
    flex-basis: 62px;
  }

  .brand-mark strong {
    font-size: 20px;
  }

  .simple-panel,
  .support-section,
  .policy-panel {
    padding: 20px;
    margin-top: 18px;
  }
}

/* GQ Bunny brand pass */
:root {
  color-scheme: dark;
  --ink: #f7f1df;
  --muted: #b9b0a1;
  --paper: #050506;
  --panel: #111113;
  --line: rgba(214, 176, 92, .25);
  --gold: #d9b86c;
  --gold-dark: #b98933;
  --teal: #56a99c;
  --blue: #d9b86c;
  --dark: #050506;
  --dark-soft: #151312;
  --danger: #c56c53;
  --success: #64b890;
}

html {
  background: #050506;
}

body {
  background:
    linear-gradient(180deg, #050506 0%, #0d0b0a 42%, #050506 100%);
  color: var(--ink);
}

.store-shell {
  width: min(1240px, calc(100% - 36px));
}

.store-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 102px;
  padding: 12px 0;
  background: rgba(5, 5, 6, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(217, 184, 108, .16);
}

.brand-mark strong {
  color: #fff7db;
  font-size: 25px;
}

.brand-mark small {
  color: #d1b97b;
}

.brand-logo,
.brand-icon {
  width: 82px;
  height: 82px;
  flex-basis: 82px;
  background: #050506;
  border-color: rgba(217, 184, 108, .72);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .42), 0 0 0 1px rgba(255, 233, 176, .08) inset;
}

.nav-link {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(217, 184, 108, .22);
  color: #efe2bd;
}

.nav-link:hover {
  border-color: rgba(217, 184, 108, .64);
  background: rgba(217, 184, 108, .12);
}

.hero-store {
  min-height: min(760px, calc(100vh - 108px));
  grid-template-columns: minmax(0, .84fr) minmax(500px, 1.16fr);
}

.platform-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.platform-row span,
.app-card-kicker span {
  border: 1px solid rgba(217, 184, 108, .26);
  border-radius: 999px;
  background: rgba(217, 184, 108, .08);
  color: #f4db9b;
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 800;
}

.eyebrow {
  color: #e0bd68;
}

h1,
h2,
h3 {
  color: #fff8e5;
}

.lead,
.section-heading p,
.app-card-body p,
.purchase-panel p,
.simple-panel > p,
.support-section p,
.policy-panel p {
  color: #c7bdad;
}

.hero-brand-visual img {
  border-color: rgba(217, 184, 108, .42);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .52), 0 0 0 1px rgba(255, 232, 170, .08) inset;
  height: clamp(260px, 34vw, 420px);
  object-fit: cover;
  object-position: center 34%;
}

.button {
  background: #d9b86c;
  border-color: #e9cf8b;
  color: #111;
}

.button.primary {
  background: linear-gradient(180deg, #f4d98d, #c99a42);
  border-color: #f0d58d;
  color: #111;
  box-shadow: 0 14px 26px rgba(217, 184, 108, .22);
}

.button.secondary {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(217, 184, 108, .28);
  color: #f1dfaf;
}

.trust-strip {
  border-color: rgba(217, 184, 108, .24);
  background: rgba(217, 184, 108, .22);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .26);
}

.trust-strip div,
.app-card,
.simple-panel,
.support-section,
.policy-panel {
  background: rgba(17, 17, 19, .92);
  border-color: rgba(217, 184, 108, .22);
}

.trust-strip strong,
.feature-list li,
.setup-list strong,
.policy-grid strong,
.compact-support-list strong {
  color: #fff3d6;
}

.trust-strip span,
.setup-list small,
.policy-grid small,
.compact-support-list small,
.fine-print {
  color: #b9b0a1;
}

.product-catalog-grid,
.product-column-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 44px;
}

.product-column-grid {
  align-items: start;
  gap: 28px;
}

.catalog-column {
  min-width: 0;
}

.catalog-column-heading {
  min-height: 136px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(217, 184, 108, .18);
  margin-bottom: 14px;
}

.catalog-column-heading h3 {
  font-size: clamp(26px, 3vw, 36px);
}

.catalog-column-heading p:not(.eyebrow) {
  margin: 10px 0 0;
  color: #b9b0a1;
  line-height: 1.45;
}

.catalog-column-list {
  display: grid;
  gap: 14px;
}

.text-link {
  color: #f4db9b;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.text-link:hover {
  color: #fff3d6;
}

.catalog-card {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr) minmax(190px, .42fr);
  grid-template-areas: "image copy meta";
  align-items: center;
  gap: 16px;
  min-height: 138px;
  padding: 16px;
  border: 1px solid rgba(217, 184, 108, .22);
  border-radius: 8px;
  background: rgba(255, 255, 255, .055);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .22);
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

.catalog-column .catalog-card {
  grid-template-columns: 118px minmax(0, 1fr);
  grid-template-areas:
    "image copy"
    "meta meta";
  min-height: 176px;
}

.catalog-column .catalog-card img {
  width: 118px;
  height: 84px;
}

.catalog-card:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 184, 108, .58);
  background: rgba(217, 184, 108, .09);
}

.catalog-card img {
  grid-area: image;
  width: 118px;
  height: 84px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(217, 184, 108, .18);
  background: #080808;
}

.catalog-card-copy {
  grid-area: copy;
  min-width: 0;
}

.catalog-card-copy strong,
.catalog-card-copy small {
  display: block;
}

.catalog-card-copy strong {
  color: #fff8e5;
  font-size: 22px;
  line-height: 1.08;
}

.catalog-card-copy small {
  margin-top: 6px;
  color: #b9b0a1;
  line-height: 1.4;
  max-width: 620px;
}

.catalog-meta {
  grid-area: meta;
  display: grid;
  gap: 5px;
  justify-items: end;
  align-content: center;
  text-align: right;
  color: #b9b0a1;
  font-size: 12px;
  line-height: 1.25;
}

.catalog-column .catalog-meta {
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  align-items: center;
  justify-items: start;
  text-align: left;
  column-gap: 10px;
  row-gap: 5px;
}

.catalog-meta span,
.catalog-meta strong,
.catalog-meta em {
  display: block;
}

.catalog-meta strong {
  color: #f3d994;
  font-size: 20px;
  line-height: 1.1;
}

.catalog-meta em {
  margin-top: 4px;
  color: #fff3d6;
  font-style: normal;
  font-weight: 800;
}

.catalog-column .catalog-meta em {
  margin-top: 0;
  justify-self: end;
  grid-column: 3;
}

.catalog-meta .planned,
.platform-download.planned {
  opacity: .68;
}

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

.home-path-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(217, 184, 108, .22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(217, 184, 108, .12), rgba(255, 255, 255, .04) 38%, rgba(255, 255, 255, .02)),
    rgba(17, 17, 19, .92);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .3);
}

.home-path-card h2 {
  font-size: clamp(28px, 3vw, 38px);
}

.home-path-card p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: #c7bdad;
  font-size: 17px;
  line-height: 1.55;
}

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

.platform-download {
  min-height: 62px;
  padding: 12px;
  border: 1px solid rgba(217, 184, 108, .22);
  border-radius: 8px;
  background: rgba(255, 255, 255, .055);
}

.platform-download.available {
  border-color: rgba(217, 184, 108, .48);
  background: rgba(217, 184, 108, .11);
}

.platform-download strong,
.platform-download span {
  display: block;
}

.platform-download strong {
  color: #fff8e5;
  font-size: 14px;
}

.platform-download span {
  margin-top: 4px;
  color: #b9b0a1;
  font-size: 12px;
}

.app-card {
  box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
}

.app-card-image {
  background: #080808;
}

.paid-tool-card .app-card-image {
  padding: clamp(18px, 3vw, 34px);
  object-fit: contain;
  background:
    radial-gradient(circle at 28% 22%, rgba(217, 184, 108, .18), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02)),
    #0b0b0c;
}

.app-card-kicker {
  margin-bottom: 16px;
}

.feature-list li::before {
  background: #d9b86c;
}

.purchase-panel {
  background: rgba(7, 7, 8, .78);
  border-color: rgba(217, 184, 108, .2);
}

.purchase-panel > div + div {
  border-color: rgba(217, 184, 108, .2);
}

.paid-only-panel {
  grid-template-columns: .85fr 1.15fr;
}

.store-form input,
.store-form select,
.store-form textarea {
  background: #f8f3e8;
  border-color: rgba(217, 184, 108, .42);
  color: #111417;
}

.store-form label {
  color: #f8e8be;
}

.notice,
.form-status {
  background: rgba(217, 184, 108, .12);
  border-color: rgba(217, 184, 108, .32);
}

.store-footer {
  background: #050506;
  border-top-color: rgba(217, 184, 108, .2);
  color: #a99f8f;
}

.store-footer a {
  color: #f2d383;
}

@media (max-width: 920px) {
  .hero-store,
  .product-catalog-grid,
  .product-column-grid {
    grid-template-columns: 1fr;
  }

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

  .catalog-card {
    grid-template-columns: 96px minmax(0, 1fr);
    grid-template-areas:
      "image copy"
      "meta meta";
  }

  .catalog-meta {
    justify-content: flex-start;
    justify-items: start;
    text-align: left;
  }

  .catalog-column-heading {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  .brand-logo,
  .brand-icon {
    width: 72px;
    height: 72px;
    flex-basis: 72px;
  }

  .catalog-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "image"
      "copy"
      "meta";
  }

  .catalog-column-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .catalog-column .catalog-meta {
    grid-template-columns: 1fr;
  }

  .catalog-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .paid-only-panel {
    grid-template-columns: 1fr;
  }
}
