:root {
  --black: #050506;
  --black-2: #0a0c10;
  --panel: rgba(8, 10, 13, 0.86);
  --panel-2: rgba(17, 21, 27, 0.92);
  --gold: #d9aa45;
  --gold-2: #ffe29a;
  --teal: #2ec5aa;
  --teal-2: #092c2d;
  --cream: #fff4d6;
  --muted: #c8bda2;
  --line: rgba(217, 170, 69, 0.36);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.52);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--cream);
  background: var(--black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.98), rgba(5, 5, 6, 0.58), rgba(5, 5, 6, 0.94)),
    linear-gradient(180deg, rgba(5, 5, 6, 0.18), rgba(5, 5, 6, 0.92) 82%),
    url("assets/godvalley-page-background-optimized.jpg");
  background-position: center top;
  background-size: cover;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(217, 170, 69, 0.1) 1px, transparent 1px),
    linear-gradient(rgba(217, 170, 69, 0.07) 1px, transparent 1px),
    radial-gradient(circle at 24% 24%, rgba(46, 197, 170, 0.14), transparent 30%),
    radial-gradient(circle at 84% 15%, rgba(217, 170, 69, 0.14), transparent 26%);
  background-size: 42px 42px, 42px 42px, auto, auto;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.shell {
  width: min(1240px, calc(100% - 28px));
  margin: 0 auto;
}

.social-rail {
  position: fixed;
  left: 14px;
  bottom: 14px;
  z-index: 30;
  display: grid;
  gap: 10px;
}

.social-rail a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 226, 154, 0.42);
  border-radius: 50%;
  background: rgba(255, 244, 214, 0.96);
}

.social-rail img,
.contact-btn img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.hero {
  min-height: 0;
  padding: 12px 0 32px;
  background:
    linear-gradient(180deg, rgba(5, 5, 6, 0.06), rgba(5, 5, 6, 0.72) 76%, rgba(5, 5, 6, 0.96)),
    url("assets/godvalley-page-background-optimized.jpg");
  background-position: center top;
  background-size: cover;
}

.nav {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 60px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.78);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  color: #1a1206;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
}

.brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: var(--gold-2);
}

.nav-actions,
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover,
.platform-card:hover,
.step-card:hover {
  transform: translateY(-2px);
}

.btn-gold {
  color: #170f05;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
}

.btn-dark,
.btn-outline {
  color: var(--gold-2);
  border-color: var(--line);
  background: rgba(0, 0, 0, 0.38);
}

.btn-large {
  min-height: 48px;
  padding: 0 20px;
}

.hero-board {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(300px, 0.86fr) minmax(220px, 0.42fr);
  gap: 24px;
  align-items: start;
  padding: 58px 0 24px;
}

.kicker {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 520px;
  margin: 0;
  color: var(--cream);
  font-size: 4.1rem;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy p:not(.kicker) {
  max-width: 500px;
  margin: 16px 0 0;
  padding: 12px 14px;
  border-left: 2px solid var(--gold);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(0, 0, 0, 0.34);
  font-size: 1rem;
  line-height: 1.45;
  backdrop-filter: blur(8px);
}

.hero-cta {
  justify-content: flex-start;
  margin-top: 26px;
}

.checks {
  display: grid;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.checks li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 800;
}

.checks li::before {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  color: #061a16;
  background: var(--teal);
  content: "✓";
  font-size: 0.72rem;
  font-weight: 900;
}

.logo-stage {
  position: relative;
  display: grid;
  justify-items: center;
  align-self: stretch;
  min-height: 430px;
}

.logo-orbit {
  position: relative;
  width: min(100%, 410px);
  aspect-ratio: 1;
  overflow: hidden;
  border: 2px solid rgba(255, 226, 154, 0.62);
  border-radius: 50%;
  background: #050506;
  box-shadow:
    0 0 0 12px rgba(217, 170, 69, 0.07),
    0 26px 80px rgba(0, 0, 0, 0.64);
}

.logo-orbit img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  background: #050506;
}

.logo-title {
  position: absolute;
  bottom: 8px;
  display: grid;
  min-width: 280px;
  gap: 3px;
  padding: 13px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.76);
  text-align: center;
  box-shadow: var(--shadow);
}

.logo-title strong {
  color: var(--gold-2);
  font-size: 1.9rem;
  line-height: 1;
  text-transform: uppercase;
}

.logo-title span {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.trust-stack {
  display: grid;
  gap: 10px;
  align-content: center;
}

.trust-stack article {
  display: grid;
  place-items: center;
  min-height: 74px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(5, 8, 10, 0.74), rgba(5, 8, 10, 0.58));
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.trust-stack strong,
.trust-stack small {
  display: block;
  max-width: 22ch;
}

.trust-stack strong {
  color: var(--cream);
  font-size: 1rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.trust-stack small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.25;
}

.steps-panel,
.platform-strip {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(4, 7, 9, 0.76);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
}

.steps-heading,
.strip-title {
  margin-bottom: 16px;
  text-align: center;
}

.steps-heading h2,
.strip-title h2,
.contact-panel h2 {
  max-width: 840px;
  margin: 0 auto;
  font-size: 2.15rem;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.step-card {
  position: relative;
  min-height: 210px;
  padding: 30px 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(18, 23, 31, 0.96), rgba(6, 8, 10, 0.96));
  text-align: center;
}

.step-number {
  position: absolute;
  top: -17px;
  left: calc(50% - 19px);
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 2px solid var(--gold-2);
  border-radius: 50%;
  color: #061a16;
  background: var(--teal);
  font-weight: 900;
}

.step-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  margin: 10px auto 13px;
  border-radius: var(--radius);
  color: var(--gold-2);
  background: rgba(217, 170, 69, 0.1);
  font-weight: 900;
}

.step-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  text-transform: uppercase;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.platform-search {
  width: min(360px, 100%);
  margin: 0 auto 12px;
}

.platform-search input {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

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

.platform-card {
  display: grid;
  gap: 7px;
  justify-items: center;
  min-width: 0;
  min-height: 88px;
  padding: 8px 5px;
  border: 1px solid rgba(217, 170, 69, 0.24);
  border-radius: var(--radius);
  color: var(--cream);
  background: #0f141c;
}

.platform-card.is-hidden {
  display: none;
}

.platform-card img {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  object-fit: cover;
}

.platform-card span {
  max-width: 100%;
  overflow-wrap: anywhere;
  font-size: 0.68rem;
  font-weight: 900;
  text-align: center;
}

.payments-section {
  padding: 44px 0 36px;
  background:
    linear-gradient(180deg, rgba(5, 5, 6, 0.94), rgba(8, 36, 35, 0.88)),
    url("assets/godvalley-page-background-optimized.jpg");
  background-position: center bottom;
  background-size: cover;
}

.payments-heading {
  margin-bottom: 18px;
  text-align: center;
}

.payments-heading h2 {
  margin: 0;
  color: var(--cream);
  font-size: 1.8rem;
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: uppercase;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(250px, 330px));
  justify-content: center;
  gap: 14px;
}

.payment-methods article {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 116px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 226, 154, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 226, 154, 0.08), transparent 42%),
    rgba(0, 0, 0, 0.54);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
  text-align: left;
}

.payment-mark {
  display: grid;
  place-items: center;
  width: 92px;
  height: 64px;
  padding: 12px;
  border: 1px solid rgba(255, 226, 154, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 244, 214, 0.96);
}

.payment-mark.icon-mark {
  width: 70px;
  justify-self: center;
  border-radius: var(--radius);
}

.payment-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.payment-methods strong,
.payment-methods span {
  display: block;
}

.payment-methods strong {
  color: var(--gold-2);
  font-size: 1.04rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.payment-methods span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.25;
}

.contact-section {
  padding: 46px 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.96), rgba(5, 5, 6, 0.76)),
    url("assets/godvalley-page-background-optimized.jpg");
  background-position: center;
  background-size: cover;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.58);
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  margin: 0;
}

.contact-panel p:not(.kicker) {
  max-width: 660px;
  color: var(--muted);
}

.contact-actions {
  display: grid;
  gap: 10px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 160px;
  min-height: 46px;
  border-radius: var(--radius);
  color: #06110f;
  background: var(--cream);
  font-weight: 900;
}

.about {
  padding: 26px 0 38px;
  color: var(--muted);
  background: var(--black);
  text-align: center;
}

.about p {
  max-width: 840px;
  margin: 0 auto;
}

@media (max-width: 1120px) {
  .nav {
    grid-template-columns: auto auto;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .hero-board {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  }

  .logo-stage {
    align-self: center;
    min-height: 0;
  }

  .trust-stack {
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

@media (max-width: 820px) {
  .nav,
  .contact-panel {
    grid-template-columns: 1fr;
  }

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

  .hero-board {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
    padding: 22px 0 10px;
  }

  .logo-stage {
    order: -1;
    margin: 0 auto;
  }

  .hero-copy h1 {
    font-size: 3rem;
  }

  .logo-orbit {
    width: min(82vw, 380px);
  }

  .logo-title {
    bottom: 0;
  }

  .steps-grid,
  .payment-methods,
  .trust-stack {
    grid-template-columns: 1fr 1fr;
  }

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

  .social-rail {
    position: static;
    display: flex;
    justify-content: center;
    padding: 14px 0 0;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(100% - 20px, 1240px);
  }

  .nav {
    gap: 10px;
  }

  .nav-links {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
    overflow: visible;
    font-size: 0.64rem;
  }

  .nav-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 3px;
    border: 1px solid rgba(255, 226, 154, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
  }

  .hero-copy h1,
  .steps-heading h2,
  .strip-title h2,
  .contact-panel h2 {
    font-size: 2.1rem;
  }

  .hero-board {
    gap: 16px;
    padding: 18px 0 6px;
  }

  .hero-copy {
    text-align: left;
  }

  .hero-copy p:not(.kicker) {
    max-width: 100%;
    margin-top: 12px;
    padding: 12px 14px;
    font-size: 0.98rem;
  }

  .hero-cta {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .btn-large {
    flex: 1 1 100%;
  }

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

  .nav-actions .btn {
    width: 100%;
    min-height: 42px;
    padding: 0 10px;
    font-size: 0.76rem;
  }

  .logo-stage {
    margin-bottom: 0;
  }

  .logo-orbit {
    width: min(88vw, 318px);
    box-shadow:
      0 0 0 8px rgba(217, 170, 69, 0.08),
      0 18px 54px rgba(0, 0, 0, 0.58);
  }

  .logo-orbit img {
    padding: 6px;
  }

  .logo-title {
    right: 16px;
    bottom: 0;
    left: 16px;
    min-width: 0;
    padding: 10px 12px;
  }

  .logo-title strong {
    font-size: 1.4rem;
  }

  .logo-title span {
    font-size: 0.7rem;
  }

  .checks {
    margin-top: 22px;
  }

  .checks li {
    font-size: 0.95rem;
  }

  .steps-grid,
  .payment-methods,
  .trust-stack,
  .platform-grid {
    grid-template-columns: 1fr;
  }

  .payment-methods article {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .payment-mark {
    width: 76px;
  }

  .platform-card {
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    justify-items: start;
    min-height: 64px;
    padding: 10px;
  }

  .platform-card span {
    font-size: 0.9rem;
    text-align: left;
  }
}
