:root {
  color-scheme: dark;
  --ink: #f7f2e8;
  --paper: #fff8ec;
  --muted: #b9ad9b;
  --dim: #8c8173;
  --bg: #090b0b;
  --panel: #121615;
  --panel-2: #191f1d;
  --line: rgba(255, 248, 236, 0.16);
  --gold: #d9b66f;
  --gold-2: #f1d48b;
  --green: #0f3c35;
  --green-2: #1d6a5e;
  --red: #7d2f2c;
  --blue: #24466f;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  background: var(--bg);
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 0%, rgba(217, 182, 111, 0.13), transparent 28rem),
    radial-gradient(circle at 85% 18%, rgba(29, 106, 94, 0.24), transparent 34rem),
    linear-gradient(180deg, #090b0b 0%, #101312 42%, #070808 100%);
  line-height: 1.55;
}

a {
  color: inherit;
}

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

.site-header,
main,
.site-footer {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--paper);
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.brand::before {
  content: "";
  width: 0.78rem;
  height: 0.78rem;
  border: 2px solid var(--gold);
  box-shadow: inset 0 0 0 3px var(--bg);
  rotate: 45deg;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: flex-end;
}

.nav a {
  min-height: 2.35rem;
  display: inline-flex;
  align-items: center;
  padding: 0.48rem 0.78rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.nav a:hover,
.nav a:focus-visible,
.nav a[aria-current="page"] {
  color: var(--paper);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.hero {
  min-height: calc(100vh - 5.25rem);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.78fr);
  gap: clamp(1.25rem, 4vw, 3.25rem);
  align-items: center;
  padding: 1.1rem 0 4rem;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 1.1rem;
  max-width: 10.5ch;
  color: var(--paper);
  font-size: clamp(3.25rem, 8vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  color: var(--paper);
  font-size: clamp(1.9rem, 4vw, 3.35rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.55rem;
  color: var(--paper);
  font-size: 1.08rem;
}

p,
li,
td,
th {
  color: var(--muted);
}

.lead {
  max-width: 42rem;
  color: #ded4c3;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.cta-row,
.pill-row,
.split-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.cta-row {
  margin-top: 1.6rem;
}

.button,
.button-secondary {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.84rem 1.05rem;
  font-weight: 850;
  text-decoration: none;
}

.button {
  color: #10100d;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 16px 36px rgba(217, 182, 111, 0.25);
}

.button:hover,
.button:focus-visible {
  filter: brightness(1.06);
}

.button-secondary {
  border: 1px solid var(--line);
  color: var(--paper);
  background: rgba(255, 255, 255, 0.06);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.11);
}

.hero-stage {
  position: relative;
  min-height: 42rem;
}

.art-room {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 236, 0.18);
  border-radius: 22px;
  background: #111;
  box-shadow: var(--shadow);
}

.art-room img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.art-room::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 11, 11, 0.1), rgba(9, 11, 11, 0.68)),
    linear-gradient(0deg, rgba(9, 11, 11, 0.62), transparent 46%);
}

.phone {
  position: absolute;
  right: -0.15rem;
  bottom: -0.5rem;
  width: min(70%, 21rem);
  border: 10px solid #070807;
  border-radius: 2.6rem;
  background: #f8f4ea;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.58);
  overflow: hidden;
}

.phone::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0.45rem;
  width: 5.4rem;
  height: 0.42rem;
  border-radius: 99px;
  transform: translateX(-50%);
  background: #111;
  z-index: 2;
}

.phone-screen {
  min-height: 34rem;
  padding: 1.9rem 1rem 1rem;
  color: #161615;
  background: linear-gradient(180deg, #fbf7ee, #efe7d8);
}

.app-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.95rem;
}

.app-kicker,
.mini-label {
  color: #806330;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.app-title {
  color: #171713;
  font-size: 1.15rem;
  font-weight: 900;
}

.app-chip {
  border-radius: 99px;
  padding: 0.32rem 0.58rem;
  color: #f8f2df;
  background: #123b35;
  font-size: 0.72rem;
  font-weight: 800;
}

.art-preview {
  overflow: hidden;
  border-radius: 1.2rem;
  background:
    linear-gradient(135deg, rgba(125, 47, 44, 0.85), rgba(36, 70, 111, 0.85)),
    linear-gradient(90deg, #2f473f, #151715);
}

.art-preview-grid {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 0.35rem;
  padding: 0.45rem;
}

.art-tile {
  min-height: 8.4rem;
  border-radius: 0.9rem;
  background:
    radial-gradient(circle at 32% 20%, rgba(241, 212, 139, 0.9), transparent 20%),
    linear-gradient(135deg, #7d2f2c, #172a38 58%, #0f3c35);
}

.art-tile.small {
  min-height: 3.95rem;
  background:
    radial-gradient(circle at 70% 25%, rgba(241, 212, 139, 0.7), transparent 22%),
    linear-gradient(145deg, #23466f, #151615);
}

.record-card {
  margin-top: 0.9rem;
  border: 1px solid rgba(22, 22, 18, 0.12);
  border-radius: 1rem;
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.7);
}

.record-row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.62rem 0;
  border-bottom: 1px solid rgba(22, 22, 18, 0.09);
}

.record-row:last-child {
  border-bottom: 0;
}

.record-row strong {
  color: #171713;
}

.record-row span {
  color: #6a5f4f;
  font-size: 0.86rem;
}

.floating-note {
  position: absolute;
  left: -1.25rem;
  bottom: 4rem;
  max-width: 15rem;
  border: 1px solid rgba(241, 212, 139, 0.34);
  border-radius: 18px;
  padding: 1rem;
  background: rgba(10, 12, 12, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.floating-note strong {
  display: block;
  color: var(--paper);
}

.floating-note span {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.72fr);
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.section-head p {
  font-size: 1.06rem;
}

.gallery-grid,
.feature-grid,
.price-grid,
.trust-grid {
  display: grid;
  gap: 1rem;
}

.gallery-grid {
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
}

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

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

.panel,
.feature,
.price-card,
.page-card,
.page-intro {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

.panel,
.feature,
.price-card,
.page-card,
.page-intro {
  padding: 1.25rem;
}

.panel.large {
  min-height: 26rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, transparent, rgba(5, 7, 7, 0.85)),
    url("/assets/collector-room.png") center / cover;
}

.panel.art-a,
.panel.art-b {
  min-height: 12.5rem;
}

.panel.art-a {
  background:
    radial-gradient(circle at 25% 20%, rgba(241, 212, 139, 0.5), transparent 23%),
    linear-gradient(140deg, #7d2f2c, #101312 55%, #183a34);
}

.panel.art-b {
  background:
    radial-gradient(circle at 70% 20%, rgba(241, 212, 139, 0.42), transparent 18%),
    linear-gradient(140deg, #153f56, #101312 58%, #492f58);
}

.panel h3,
.feature h3,
.price-card h3,
.page-card h2 {
  color: var(--paper);
}

.feature {
  min-height: 14rem;
}

.feature .number {
  display: inline-flex;
  width: 2.1rem;
  height: 2.1rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(241, 212, 139, 0.48);
  border-radius: 999px;
  color: var(--gold-2);
  font-size: 0.88rem;
  font-weight: 900;
}

.preview-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.screen {
  min-height: 22rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 0.9rem;
  background: #efe8dc;
  color: #171713;
  box-shadow: var(--shadow);
}

.screen h3 {
  color: #171713;
}

.screen p,
.screen li {
  color: #5f5548;
}

.mini-art {
  height: 8rem;
  border-radius: 16px;
  margin-bottom: 1rem;
  background:
    radial-gradient(circle at 74% 24%, #f1d48b, transparent 18%),
    linear-gradient(135deg, #8a3431, #173b54 62%, #0f3c35);
}

.mini-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mini-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.52rem 0;
  border-bottom: 1px solid rgba(22, 22, 18, 0.1);
  font-size: 0.9rem;
}

.mini-list li:last-child {
  border-bottom: 0;
}

.page-intro {
  margin: 2rem 0 1rem;
  padding: clamp(2rem, 6vw, 4.25rem);
}

.page-intro h1 {
  max-width: 13ch;
  font-size: clamp(2.7rem, 7vw, 5.4rem);
}

.page-stack {
  display: grid;
  gap: 1rem;
  margin-bottom: 4rem;
}

.feature-list,
.plain-list {
  margin: 0;
  padding-left: 1.15rem;
}

.feature-list li + li,
.plain-list li + li {
  margin-top: 0.55rem;
}

.pill-row {
  margin-top: 1.2rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  border: 1px solid rgba(241, 212, 139, 0.22);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  color: var(--paper);
  background: rgba(241, 212, 139, 0.08);
  font-size: 0.88rem;
  font-weight: 750;
}

.price-card.featured {
  border-color: rgba(241, 212, 139, 0.55);
  background: linear-gradient(180deg, rgba(217, 182, 111, 0.13), rgba(255, 255, 255, 0.04));
}

.price-name {
  margin-bottom: 0.35rem;
  color: var(--paper);
  font-weight: 900;
}

.price-value {
  margin-bottom: 0.55rem;
  color: var(--gold-2);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}

.muted-note,
.price-note {
  color: var(--muted);
  font-size: 0.94rem;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

th,
td {
  padding: 0.9rem 0.75rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--paper);
}

.site-footer {
  padding: 2rem 0 3rem;
}

.support-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(1.1rem, 3vw, 1.6rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

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

label {
  display: block;
  margin-bottom: 0.42rem;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 248, 236, 0.2);
  border-radius: 14px;
  padding: 0.85rem 0.95rem;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.07);
  font: inherit;
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(247, 242, 232, 0.52);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.form-actions .button {
  border: 0;
  cursor: pointer;
}

.form-actions p {
  flex: 1 1 18rem;
  margin: 0;
}

.footer-card {
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
}

@media (max-width: 900px) {
  .hero,
  .section-head,
  .gallery-grid,
  .feature-grid,
  .trust-grid,
  .price-grid,
  .preview-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 1.5rem;
  }

  .hero-stage {
    min-height: 36rem;
  }

  .phone {
    right: 0.8rem;
    width: min(74%, 19rem);
  }

  .floating-note {
    left: 0.8rem;
    bottom: 2.2rem;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

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

  .nav a {
    padding: 0.42rem 0.62rem;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.5rem);
  }

  .hero-stage {
    min-height: 31rem;
  }

  .art-room {
    border-radius: 18px;
  }

  .phone {
    width: 76%;
    border-width: 8px;
    border-radius: 2rem;
  }

  .phone-screen {
    min-height: 27rem;
    padding: 1.55rem 0.72rem 0.75rem;
  }

  .floating-note {
    max-width: 12.5rem;
  }

  .button,
  .button-secondary {
    width: 100%;
  }

  .support-form {
    grid-template-columns: 1fr;
  }

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

  table {
    min-width: 0;
  }

  thead {
    display: none;
  }

  tr,
  td {
    display: block;
  }

  tr {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
  }

  td {
    border-bottom: 0;
    padding: 0.25rem 0;
  }

  td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 0.18rem;
    color: var(--gold-2);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }
}
