* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

:root {
  --bg: #050505;
  --card: rgba(18,18,18,.82);
  --card2: rgba(28,28,28,.72);

  --text: #f8f5ef;
  --muted: #8f8b84;

  --gold: #d6b274;
  --gold2: #f1dfb3;

  --line: rgba(214,178,116,.18);

  --radius: 24px;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Display",
    Arial,
    sans-serif;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

button {
  font-family: inherit;
}

.space-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;

  background:
    radial-gradient(circle at 50% 15%,
      rgba(126,89,31,.16),
      transparent 34%),
    radial-gradient(circle at 85% 40%,
      rgba(47,60,92,.16),
      transparent 35%),
    linear-gradient(
      180deg,
      #080808 0%,
      #050505 45%,
      #000 100%
    );

  z-index: 0;
}

.stars {
  position: absolute;
  inset: 0;

  opacity: .3;

  background-image:
    radial-gradient(circle, rgba(255,255,255,.8) 1px, transparent 1px);

  background-size: 80px 80px;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.glow-one {
  width: 280px;
  height: 280px;

  top: 150px;
  left: -100px;

  background: rgba(199,154,77,.10);
}

.glow-two {
  width: 260px;
  height: 260px;

  right: -130px;
  top: 500px;

  background: rgba(84,92,146,.10);
}

.app {
  position: relative;
  z-index: 2;

  max-width: 600px;

  margin: 0 auto;

  padding:
    calc(16px + env(safe-area-inset-top))
    18px
    110px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 8px 0 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 44px;
  height: 44px;

  border-radius: 15px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(214,178,116,.45);

  background:
    linear-gradient(
      145deg,
      rgba(214,178,116,.18),
      rgba(255,255,255,.02)
    );

  color: var(--gold2);

  font-family: Georgia, serif;
  font-size: 18px;
  letter-spacing: -2px;

  box-shadow:
    inset 0 0 20px rgba(214,178,116,.08),
    0 0 30px rgba(214,178,116,.06);
}

.brand-title {
  font-size: 14px;
  font-weight: 700;

  letter-spacing: 2px;
}

.brand-subtitle {
  margin-top: 4px;

  color: var(--muted);

  font-size: 9px;
  letter-spacing: 2px;
}

.premium-badge {
  padding: 8px 11px;

  border-radius: 999px;

  border: 1px solid var(--line);

  color: var(--gold);

  font-size: 9px;
  letter-spacing: 2px;
}

.hero {
  padding: 15px 0 25px;

  text-align: center;
}

.planet-wrap {
  width: 245px;
  height: 245px;

  position: relative;

  margin: 15px auto 25px;
}

.planet {
  position: absolute;

  width: 188px;
  height: 188px;

  border-radius: 50%;

  left: 50%;
  top: 50%;

  transform: translate(-50%,-50%);

  overflow: hidden;

  background:
    radial-gradient(
      circle at 65% 30%,
      #c9a665 0%,
      #68502d 11%,
      #161a20 31%,
      #06080c 70%
    );

  box-shadow:
    inset -35px -35px 55px rgba(0,0,0,.85),
    0 0 35px rgba(214,178,116,.20),
    0 0 90px rgba(214,178,116,.08);
}

.planet-light {
  position: absolute;
  inset: -30%;

  background:
    radial-gradient(
      circle at 65% 30%,
      rgba(255,228,169,.9),
      transparent 22%
    );
}

.planet-grid {
  position: absolute;
  inset: 0;

  opacity: .18;

  background-image:
    repeating-radial-gradient(
      circle,
      transparent 0 12px,
      rgba(255,255,255,.18) 13px
    );
}

.orbit {
  position: absolute;

  left: 50%;
  top: 50%;

  border: 1px solid rgba(214,178,116,.38);

  border-radius: 50%;

  transform:
    translate(-50%,-50%)
    rotate(-17deg);
}

.orbit-one {
  width: 245px;
  height: 100px;
}

.orbit-two {
  width: 215px;
  height: 75px;

  opacity: .35;

  transform:
    translate(-50%,-50%)
    rotate(19deg);
}

.planet-logo {
  position: absolute;

  left: 50%;
  top: 50%;

  transform: translate(-50%,-48%);

  font-family: Georgia, serif;

  font-size: 76px;

  color: #e7cf9e;

  text-shadow:
    0 2px 0 #67502f,
    0 8px 22px rgba(0,0,0,.9);
}

.hero-kicker {
  color: var(--gold);

  font-size: 10px;
  letter-spacing: 4px;

  margin-bottom: 9px;
}

.hero h1 {
  margin: 0;

  font-family: Georgia, serif;

  font-weight: 400;

  font-size: 43px;

  line-height: .98;

  letter-spacing: 2px;
}

.hero h1 span {
  color: var(--gold2);
}

.hero-description {
  color: var(--muted);

  margin: 16px 0 15px;

  font-size: 13px;

  line-height: 1.7;
}

.status-pill {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  border: 1px solid rgba(255,255,255,.08);

  background: rgba(255,255,255,.035);

  padding: 9px 14px;

  border-radius: 999px;

  color: #c8c4bc;

  font-size: 12px;
}

.status-dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #797979;

  box-shadow: 0 0 12px #797979;
}

.power-button {
  border: none;
  background: none;

  display: block;

  margin: 20px auto 0;

  color: var(--text);

  cursor: pointer;
}

.power-circle {
  width: 82px;
  height: 82px;

  margin: auto;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(214,178,116,.45);

  background:
    radial-gradient(
      circle at 30% 20%,
      rgba(214,178,116,.20),
      rgba(18,18,18,.95)
    );

  box-shadow:
    0 0 45px rgba(214,178,116,.10),
    inset 0 0 25px rgba(214,178,116,.07);
}

.power-icon {
  font-size: 34px;

  color: var(--gold2);
}

.power-text {
  margin-top: 12px;

  font-size: 10px;
  letter-spacing: 3px;

  color: var(--gold);
}

.server-card {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 17px;

  border-radius: var(--radius);

  border: 1px solid rgba(255,255,255,.065);

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.055),
      rgba(255,255,255,.018)
    );

  backdrop-filter: blur(20px);

  box-shadow:
    0 18px 50px rgba(0,0,0,.35);
}

.server-left,
.server-right {
  display: flex;
  align-items: center;

  gap: 12px;
}

.server-icon {
  width: 42px;
  height: 42px;

  border-radius: 14px;

  background: rgba(214,178,116,.08);

  display: flex;
  align-items: center;
  justify-content: center;
}

.small-label {
  color: var(--gold);

  font-size: 8px;
  letter-spacing: 2px;

  margin-bottom: 5px;
}

.server-name {
  font-size: 14px;
  font-weight: 600;
}

.ping {
  color: #aaa59d;

  font-size: 11px;
}

.arrow {
  font-size: 28px;
  color: var(--gold);
}

.stats {
  display: grid;

  grid-template-columns: repeat(3,1fr);

  gap: 8px;

  margin: 12px 0 32px;
}

.stat {
  text-align: center;

  padding: 17px 8px;

  border: 1px solid rgba(255,255,255,.055);

  border-radius: 19px;

  background: rgba(255,255,255,.025);
}

.stat-icon {
  color: var(--gold);
  font-size: 17px;

  margin-bottom: 8px;
}

.stat-title {
  font-size: 9px;

  letter-spacing: 1.5px;

  margin-bottom: 5px;
}

.stat-desc {
  font-size: 9px;
  color: #706d67;
}

.section {
  margin-top: 32px;
}

.section-head {
  display: flex;

  align-items: end;
  justify-content: space-between;

  margin-bottom: 15px;
}

.section-number {
  color: var(--gold);

  font-family: Georgia,serif;

  font-size: 12px;

  margin-bottom: 5px;
}

.section h2 {
  margin: 0;

  font-family: Georgia,serif;

  font-weight: 400;

  font-size: 25px;
}

.gold-label {
  color: var(--gold);

  font-size: 8px;
  letter-spacing: 2px;
}

.trial-card {
  padding: 19px;

  border-radius: 22px;

  display: flex;

  justify-content: space-between;
  align-items: center;

  gap: 15px;

  background:
    linear-gradient(
      120deg,
      rgba(214,178,116,.13),
      rgba(255,255,255,.025)
    );

  border: 1px solid rgba(214,178,116,.18);
}

.trial-title {
  font-size: 14px;
  font-weight: 600;

  margin-bottom: 6px;
}

.trial-description {
  font-size: 10px;

  color: var(--muted);

  line-height: 1.5;
}

.small-gold-button {
  border: 1px solid rgba(214,178,116,.5);

  color: var(--gold2);

  background: rgba(214,178,116,.07);

  border-radius: 13px;

  padding: 12px 10px;

  font-size: 8px;

  letter-spacing: 1.2px;
}

.plan-card {
  position: relative;

  display: flex;

  align-items: center;
  justify-content: space-between;

  padding: 21px;

  border-radius: 22px;

  margin-bottom: 10px;

  border: 1px solid rgba(255,255,255,.065);

  background: rgba(255,255,255,.028);
}

.plan-card.featured {
  border-color: rgba(214,178,116,.28);

  background:
    linear-gradient(
      120deg,
      rgba(214,178,116,.13),
      rgba(255,255,255,.025)
    );
}

.popular-badge {
  position: absolute;

  right: 18px;
  top: -8px;

  padding: 5px 8px;

  border-radius: 999px;

  background: var(--gold);

  color: #090909;

  font-size: 7px;

  letter-spacing: 1px;

  font-weight: 700;
}

.plan-name {
  font-size: 13px;

  letter-spacing: 1px;

  margin-bottom: 5px;
}

.plan-caption {
  font-size: 10px;

  color: var(--muted);
}

.plan-price {
  font-family: Georgia,serif;

  font-size: 22px;

  color: var(--gold2);
}

.manifesto {
  margin-top: 45px;

  padding: 35px 22px;

  text-align: center;

  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.manifesto-logo {
  font-family: Georgia,serif;

  color: var(--gold2);

  font-size: 30px;

  letter-spacing: -2px;

  margin-bottom: 12px;
}

.manifesto-title {
  font-family: Georgia,serif;

  font-size: 18px;

  letter-spacing: 2px;
}

.manifesto-text {
  margin: 12px auto;

  max-width: 280px;

  color: var(--muted);

  font-size: 11px;

  line-height: 1.7;
}

.manifesto-text strong {
  color: #d7d2c9;

  font-weight: 500;
}

.manifesto-bottom {
  margin-top: 14px;

  color: var(--gold);

  font-size: 8px;
  letter-spacing: 3px;
}

.bottom-space {
  height: 20px;
}

.bottom-nav {
  position: fixed;

  z-index: 20;

  bottom: 0;
  left: 0;
  right: 0;

  display: flex;

  justify-content: space-around;

  padding:
    10px 10px
    calc(10px + env(safe-area-inset-bottom));

  border-top: 1px solid rgba(255,255,255,.07);

  background: rgba(5,5,5,.88);

  backdrop-filter: blur(25px);
}

.nav-item {
  flex: 1;

  border: 0;
  background: transparent;

  color: #68655f;

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 4px;
}

.nav-item span {
  font-size: 18px;
}

.nav-item small {
  font-size: 9px;
}

.nav-item.active {
  color: var(--gold2);
}

.overlay {
  position: fixed;

  z-index: 100;

  inset: 0;

  display: flex;

  align-items: flex-end;

  background: rgba(0,0,0,.72);

  backdrop-filter: blur(12px);

  padding: 15px;
}

.hidden {
  display: none !important;
}

.modal {
  width: 100%;

  max-width: 560px;

  margin: 0 auto;

  padding: 23px;

  border-radius: 28px;

  background:
    linear-gradient(
      180deg,
      #161616,
      #080808
    );

  border: 1px solid rgba(214,178,116,.14);

  box-shadow:
    0 -20px 90px rgba(0,0,0,.8);
}

.modal-head {
  display: flex;

  justify-content: space-between;
  align-items: flex-start;

  margin-bottom: 20px;
}

.modal h3 {
  margin: 0;

  font-family: Georgia,serif;

  font-size: 25px;

  font-weight: 400;
}

.close {
  border: 0;

  color: #ddd;

  background: rgba(255,255,255,.06);

  width: 36px;
  height: 36px;

  border-radius: 50%;

  font-size: 22px;
}

.server-option {
  width: 100%;

  display: flex;

  justify-content: space-between;

  padding: 16px 5px;

  color: #eee;

  background: transparent;

  border: 0;

  border-bottom: 1px solid rgba(255,255,255,.06);

  text-align: left;
}

.server-option span {
  color: var(--muted);

  font-size: 11px;
}

.demo-note {
  padding-top: 15px;

  color: #64615c;

  font-size: 9px;

  line-height: 1.5;
}

.profile-card {
  display: flex;

  gap: 14px;

  align-items: center;

  padding: 18px;

  background: rgba(255,255,255,.035);

  border-radius: 20px;
}

.profile-avatar {
  width: 55px;
  height: 55px;

  border-radius: 50%;

  display: flex;

  justify-content: center;
  align-items: center;

  background:
    linear-gradient(
      145deg,
      #b99150,
      #3a2b16
    );

  font-family: Georgia,serif;

  color: #fff0cf;

  font-size: 27px;
}

.profile-name {
  font-size: 14px;
}

.profile-status {
  color: var(--gold);

  margin-top: 5px;

  font-size: 9px;

  letter-spacing: 1.5px;
}

.purchase-modal {
  text-align: center;

  position: relative;

  padding-top: 35px;
}

.purchase-close {
  position: absolute;

  right: 18px;
  top: 18px;
}

.purchase-logo {
  width: 70px;
  height: 70px;

  margin: 0 auto 15px;

  border-radius: 23px;

  display: flex;

  justify-content: center;
  align-items: center;

  border: 1px solid rgba(214,178,116,.30);

  color: var(--gold2);

  font-family: Georgia,serif;

  font-size: 38px;

  background: rgba(214,178,116,.07);
}

.purchase-plan {
  margin-top: 20px;

  color: #aca79e;

  font-size: 12px;
}

.purchase-price {
  margin: 5px 0 22px;

  font-family: Georgia,serif;

  color: var(--gold2);

  font-size: 38px;
}

.checkout-button {
  width: 100%;

  border: 0;

  padding: 17px;

  border-radius: 17px;

  background:
    linear-gradient(
      135deg,
      #e0bd80,
      #8d6b37
    );

  color: #090909;

  font-weight: 800;

  font-size: 11px;

  letter-spacing: 1.5px;
}

.purchase-note {
  margin-top: 12px;

  color: #615e59;

  font-size: 9px;
}

@media (max-width: 380px) {

  .hero h1 {
    font-size: 37px;
  }

  .planet-wrap {
    transform: scale(.91);

    margin-top: 0;
    margin-bottom: 10px;
  }

  .stats {
    gap: 5px;
  }

}
