:root {
  --bg: #0d0f0d;
  --bg-soft: #14171400;
  --lime: #b6ff2b;
  --lime-dark: #8fd400;
  --text: #f3f6ef;
  --text-muted: #a9b0a4;
  --card: #1a1d19;
  --card-border: #2a2f26;
}

* {
  box-sizing: border-box;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  margin: 0;
  position: relative;
  overflow-x: hidden;
}

.bg-glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0%, rgba(182, 255, 43, 0.16), transparent 55%),
    radial-gradient(circle at 20% 90%, rgba(182, 255, 43, 0.08), transparent 50%);
}

.page-wrap {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin: 0 auto;
  padding: 48px 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Profile */
.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo-ring {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--lime), transparent 70%);
  box-shadow: 0 0 24px rgba(182, 255, 43, 0.25);
  margin-bottom: 18px;
}

.logo-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #0d0f0d;
  display: block;
}

.brand-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  margin: 0 0 6px;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0 0 14px;
}

.brand-tagline span {
  color: var(--lime);
  font-weight: 600;
}

.rating-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 100%;
}

.rating-pill i {
  color: var(--lime);
  font-size: 0.95rem;
}

.rating-pill span:nth-child(2) {
  color: var(--text);
  font-weight: 600;
}

.rating-sep {
  opacity: 0.5;
}

.rating-label {
  text-align: left;
}

/* Info row */
.info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 22px;
  width: 100%;
}

.info-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.info-chip i {
  color: var(--lime);
  font-size: 1rem;
}

/* Links */
.links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.link-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 16px 18px;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.98rem;
  transition: transform 200ms ease-in-out, border-color 200ms ease-in-out, background 200ms ease-in-out;
}

.link-btn i:first-child {
  font-size: 1.25rem;
  color: var(--lime);
  flex-shrink: 0;
}

.link-btn span {
  flex: 1;
}

.link-btn .arrow {
  font-size: 1rem;
  color: var(--text-muted);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 200ms ease-in-out, transform 200ms ease-in-out;
}

.link-btn:hover {
  transform: translateY(-2px);
  border-color: var(--lime);
  background: #1e2219;
}

.link-btn:hover .arrow {
  opacity: 1;
  transform: translateX(0);
}

.link-btn--primary {
  background: var(--lime);
  color: #0d0f0d;
  border-color: var(--lime);
  font-weight: 600;
}

.link-btn--primary i:first-child {
  color: #0d0f0d;
}

.link-btn--primary .arrow {
  color: #0d0f0d;
}

.link-btn--primary:hover {
  background: var(--lime-dark);
  border-color: var(--lime-dark);
}

/* Testimonial */
.testimonial {
  width: 100%;
  margin-top: 28px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-left: 3px solid var(--lime);
  border-radius: 14px;
  padding: 20px;
  text-align: left;
}

.testimonial i {
  color: var(--lime);
  font-size: 1.3rem;
  opacity: 0.7;
}

.testimonial p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text);
  margin: 8px 0 10px;
}

.testimonial-author {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Footer */
.page-footer {
  margin-top: 30px;
  text-align: center;
}

.page-footer p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 380px) {
  .brand-name {
    font-size: 1.4rem;
  }
}
