* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: Arial, Helvetica, sans-serif;
  background: #07090d;
  color: #ffffff;
}

body {
  background:
    radial-gradient(circle at top, rgba(209, 173, 132, 0.12), transparent 35%),
    linear-gradient(180deg, #0b0f17 0%, #07090d 100%);
}

a {
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  width: 100%;
  padding: 22px 24px;
}

.brand {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 20px 56px;
}

.hero-inner {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.copy h1 {
  margin: 0 0 14px;
  font-size: 68px;
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.copy p {
  margin: 0 0 28px;
  font-size: 24px;
  line-height: 1.4;
  color: #c5cedd;
  max-width: 640px;
}

.badge-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  padding: 15px 22px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 800;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

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

.store-apple {
  background: #d1ad84;
  color: #07090d;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.store-google {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(209,173,132,0.45);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.20);
}

.store-google:hover {
  background: rgba(209,173,132,0.08);
}

.visual-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-card {
  width: 100%;
  max-width: 520px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.visual-frame {
  width: 100%;
  min-height: 520px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.visual-frame img {
  width: 100%;
  max-width: 460px;
  height: auto;
  object-fit: contain;
  display: block;
}

.placeholder {
  text-align: center;
  padding: 30px;
}

.placeholder-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #ffffff;
}

.placeholder-text {
  font-size: 14px;
  line-height: 1.6;
  color: #9eabc2;
}

.footer {
  padding: 24px 20px 28px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  color: #8b97ad;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #aeb8ca;
}

.footer-links a:hover {
  color: #d1ad84;
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .copy {
    text-align: center;
  }

  .copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .badge-row {
    justify-content: center;
  }

  .copy h1 {
    font-size: 52px;
  }

  .visual-frame {
    min-height: 360px;
  }

  .visual-frame img {
    max-width: 340px;
  }
}

@media (max-width: 640px) {
  .topbar {
    padding: 18px 18px 0;
  }

  .hero {
    padding: 24px 16px 40px;
  }

  .copy h1 {
    font-size: 42px;
  }

  .copy p {
    font-size: 20px;
  }

  .store-button {
    width: 100%;
    min-width: 0;
  }

  .badge-row {
    flex-direction: column;
  }

  .visual-frame {
    min-height: 280px;
  }

  .visual-frame img {
    max-width: 260px;
  }
}

.how-it-works {
  padding: 84px 20px 90px;
  background:
    radial-gradient(circle at top, rgba(209, 173, 132, 0.06), transparent 40%),
    linear-gradient(180deg, #0a0e15 0%, #07090d 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.how-it-works-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-heading {
  text-align: center;
  margin-bottom: 44px;
}

.section-heading h2 {
  margin: 0 0 14px;
  font-size: 44px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.section-heading p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.7;
  color: #aeb8ca;
}

.instructions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.instruction-column {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(209, 173, 132, 0.16);
  border-radius: 22px;
  padding: 30px 26px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.instruction-column h3 {
  margin: 0 0 22px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
  color: #ffffff;
}

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.step-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.step-number {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: #07090d;
  background: #d1ad84;
  box-shadow: 0 10px 22px rgba(209, 173, 132, 0.22);
}

.step-content h4 {
  margin: 0 0 6px;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 800;
  color: #ffffff;
}

.step-content p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #aeb8ca;
}

@media (max-width: 960px) {
  .how-it-works {
    padding: 64px 20px 72px;
  }

  .instructions-grid {
    grid-template-columns: 1fr;
  }

  .section-heading h2 {
    font-size: 36px;
  }

  .instruction-column {
    padding: 24px 20px;
  }
}

@media (max-width: 640px) {
  .how-it-works {
    padding: 56px 16px 64px;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-heading h2 {
    font-size: 30px;
  }

  .section-heading p {
    font-size: 16px;
  }

  .instruction-column h3 {
    font-size: 24px;
  }

  .step-content h4 {
    font-size: 16px;
  }

  .step-content p {
    font-size: 14px;
  }
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar .brand {
  color: #ffffff;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar-links a {
  color: #aeb8ca;
  font-size: 14px;
  font-weight: 700;
}

.topbar-links a:hover {
  color: #d1ad84;
}

@media (max-width: 640px) {
  .topbar-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Homepage polish - May 2026 */

.topbar {
  padding: 18px 24px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 54px;
}

.brand-logo img {
  width: 100%;
  max-height: 54px;
  object-fit: contain;
  display: block;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 16px;
  padding: 9px 13px;
  border: 1px solid rgba(209, 173, 132, 0.28);
  border-radius: 999px;
  background: rgba(209, 173, 132, 0.08);
  color: #d1ad84;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.copy h1 {
  max-width: 720px;
}

.copy p {
  max-width: 700px;
}

.trust-strip {
  padding: 0 20px 58px;
}

.trust-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trust-card {
  min-height: 180px;
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(209, 173, 132, 0.20);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.20);
}

.trust-card h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.25;
}

.trust-card p {
  margin: 0;
  color: #c5cedd;
  font-size: 15px;
  line-height: 1.65;
}

.how-it-works {
  padding: 72px 20px;
  background: rgba(255, 255, 255, 0.025);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.how-it-works-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2 {
  margin: 0 0 12px;
  font-size: 38px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.section-heading p {
  margin: 0;
  color: #c5cedd;
  font-size: 18px;
  line-height: 1.6;
}

.instructions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.instruction-column {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(209, 173, 132, 0.18);
}

.instruction-column h3 {
  margin: 0 0 18px;
  font-size: 24px;
  color: #ffffff;
}

.step-card {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.step-number {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #d1ad84;
  color: #07090d;
  font-weight: 900;
}

.step-content h4 {
  margin: 0 0 5px;
  color: #ffffff;
  font-size: 16px;
}

.step-content p {
  margin: 0;
  color: #c5cedd;
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 960px) {
  .trust-inner,
  .instructions-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    padding-bottom: 42px;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    width: 112px;
    height: 46px;
  }

  .copy h1 {
    font-size: 40px;
  }

  .eyebrow {
    margin-left: auto;
    margin-right: auto;
  }

  .section-heading h2 {
    font-size: 30px;
  }

  .instruction-column {
    padding: 20px;
  }
}

/* Homepage motion/effects - May 2026 */

body::before {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 22%, rgba(209, 173, 132, 0.12), transparent 24%),
    radial-gradient(circle at 78% 12%, rgba(118, 144, 190, 0.10), transparent 22%),
    radial-gradient(circle at 50% 88%, rgba(209, 173, 132, 0.08), transparent 28%);
  animation: backgroundDrift 18s ease-in-out infinite alternate;
}

.hero-inner,
.trust-card,
.instruction-column {
  animation: fadeUp 0.75s ease both;
}

.trust-card:nth-child(1) {
  animation-delay: 0.08s;
}

.trust-card:nth-child(2) {
  animation-delay: 0.16s;
}

.trust-card:nth-child(3) {
  animation-delay: 0.24s;
}

.instruction-column:nth-child(1) {
  animation-delay: 0.12s;
}

.instruction-column:nth-child(2) {
  animation-delay: 0.2s;
}

.brand-logo {
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.brand-logo:hover {
  transform: translateY(-2px) scale(1.02);
  opacity: 0.92;
}

.visual-frame img {
  filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.34));
  animation: logoFloat 5.5s ease-in-out infinite;
}

.store-button {
  position: relative;
  overflow: hidden;
}

.store-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -140%;
  width: 80%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: skewX(-18deg);
  transition: left 0.55s ease;
}

.store-button:hover::after {
  left: 140%;
}

.trust-card,
.instruction-column,
.step-card {
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.trust-card:hover,
.instruction-column:hover {
  transform: translateY(-4px);
  border-color: rgba(209, 173, 132, 0.38);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.28);
}

.step-card:hover {
  transform: translateX(3px);
}

.step-card:hover .step-number {
  box-shadow: 0 0 0 6px rgba(209, 173, 132, 0.12);
}

.topbar-links a,
.footer-links a {
  position: relative;
}

.topbar-links a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #d1ad84;
  transition: width 0.18s ease;
}

.topbar-links a:hover::after,
.footer-links a:hover::after {
  width: 100%;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes backgroundDrift {
  from {
    transform: translate3d(-1.5%, -1%, 0) scale(1);
  }

  to {
    transform: translate3d(1.5%, 1%, 0) scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
