:root {
  --bg-1: #0b0b10;
  --bg-2: #171722;
  --gold-1: #f1d27a;
  --gold-2: #c8942f;
  --gold-3: #8f6420;
  --text: #f5f5f7;
  --muted: #c8c8ce;
  --border: rgba(255,255,255,0.08);
  --shadow: 0 20px 60px rgba(0,0,0,0.4);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top center, rgba(212,169,79,0.14), transparent 35%),
    linear-gradient(180deg, var(--bg-2), var(--bg-1));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 24px 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.015) 0,
    rgba(255,255,255,0.015) 2px,
    transparent 2px,
    transparent 18px
  );
  opacity: 0.3;
  pointer-events: none;
}

.wrap {
  position: relative;
  width: min(1100px, calc(100% - 32px));
  padding: 16px;
}

.card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 48px 40px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
}

.glow {
  position: absolute;
  width: 360px;
  height: 360px;
  right: -120px;
  top: -120px;
  background: radial-gradient(circle, rgba(212,169,79,0.18), transparent 65%);
  pointer-events: none;
  filter: blur(10px);
}

.logo-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.logo {
  display: block;
  width: auto;
  max-width: min(420px, 72vw);
  max-height: 250px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.35));
}

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

h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: 0.02em;
  font-weight: 800;
}

.highlight {
  background: linear-gradient(90deg, var(--gold-1), var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

p {
  margin: 0 auto;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.7;
  color: var(--muted);
  max-width: 700px;
}

.quote {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(212,169,79,0.12);
  border: 1px solid rgba(212,169,79,0.22);
  color: #f1dfad;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

@media (max-width: 640px) {
  body {
    padding: 16px 0;
  }

  .wrap {
    width: min(100%, calc(100% - 12px));
    padding: 6px;
  }

  .card {
    padding: 28px 18px;
    border-radius: 22px;
  }

  .logo-box {
    margin-bottom: 20px;
  }

  .logo {
    max-width: min(300px, 78vw);
    max-height: 180px;
  }

  .quote {
    font-size: 0.88rem;
    padding: 10px 14px;
  }
}
