* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.18; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.35; transform: translateX(-50%) scale(1.15); }
}

@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 0 0px rgba(186,117,23,0); border-color: rgba(186,117,23,0.4); }
  50% { box-shadow: 0 0 24px 4px rgba(186,117,23,0.12); border-color: rgba(239,159,39,0.7); }
}

@keyframes pulse-text {
  0%, 100% { text-shadow: 0 0 0px rgba(239,159,39,0); }
  50% { text-shadow: 0 0 18px rgba(239,159,39,0.4); }
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

body {
  background: #0c0b09;
  min-height: 100vh;
}

.page {
  background: #0c0b09;
  background-image: radial-gradient(ellipse at 50% 0%, #2a1f08 0%, #161410 40%, #0c0b09 75%);
  min-height: 100vh;
  font-family: sans-serif;
  color: #e8e2d0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

/* Pulzáló háttérfény */
.glow {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 420px;
  height: 220px;
  background: radial-gradient(ellipse, rgba(186,117,23,0.18) 0%, transparent 70%);
  pointer-events: none;
  animation: pulse-glow 4s ease-in-out infinite;
}

/* Logo */
.logo-wrap {
  margin-bottom: 2.25rem;
  animation: fade-in 0.8s ease both;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 16px;
  border: 0.5px solid rgba(186,117,23,0.4);
  background: rgba(186,117,23,0.07);
  margin-bottom: 1.25rem;
  position: relative;
  animation: pulse-ring 4s ease-in-out infinite;
}

.logo::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  background: linear-gradient(135deg, rgba(239,159,39,0.3), transparent 60%);
  pointer-events: none;
}

.logo-text {
  font-size: 20px;
  font-weight: 500;
  color: #EF9F27;
  letter-spacing: 0.08em;
  animation: pulse-text 4s ease-in-out infinite;
}

.brand-name {
  font-size: 11px;
  font-weight: 500;
  color: #63571f;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* Elválasztó vonal */
.divider-line {
  width: 40px;
  height: 0.5px;
  background: linear-gradient(90deg, transparent, rgba(186,117,23,0.5), transparent);
  margin: 2rem auto;
  animation: fade-in 0.8s ease 0.2s both;
}

/* Hero */
.hero-title {
  font-size: 44px;
  font-weight: 500;
  color: #f5eedc;
  line-height: 1.15;
  margin-bottom: 1rem;
  max-width: 480px;
  letter-spacing: -0.01em;
  animation: fade-in 0.8s ease 0.3s both;
}

.hero-title span { color: #EF9F27; }

.hero-sub {
  font-size: 14px;
  color: #635e50;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 360px;
  animation: fade-in 0.8s ease 0.4s both;
}

/* Gomb */
.btn-primary {
  font-size: 12px;
  padding: 10px 28px;
  border-radius: 6px;
  background: transparent;
  color: #EF9F27;
  border: 0.5px solid rgba(186,117,23,0.5);
  cursor: pointer;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s;
  animation: fade-in 0.8s ease 0.5s both;
  margin-bottom: 5rem;
}

.btn-primary:hover {
  background: rgba(186,117,23,0.1);
  border-color: #EF9F27;
  box-shadow: 0 0 20px rgba(186,117,23,0.15);
}

/* Szekció elválasztó */
.section-divider {
  width: 100%;
  max-width: 520px;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: fade-in 0.8s ease 0.6s both;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 0.5px;
  background: linear-gradient(90deg, transparent, rgba(186,117,23,0.25));
}

.section-divider::after {
  background: linear-gradient(270deg, transparent, rgba(186,117,23,0.25));
}

.section-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #63571f;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Leírás */
.about {
  max-width: 400px;
  font-size: 14px;
  color: #635e50;
  line-height: 1.8;
  margin-bottom: 4rem;
  animation: fade-in 0.8s ease 0.7s both;
}

@keyframes bar-fill {
  from { width: 0%; }
}

/* Perks szekció */
.perks {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: fade-in 0.8s ease 0.7s both;
}

.perk {
  background: rgba(186,117,23,0.04);
  border: 0.5px solid rgba(186,117,23,0.15);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  text-align: left;
  transition: border-color 0.2s;
}

.perk:hover {
  border-color: rgba(186,117,23,0.35);
}

.perk-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.perk-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(186,117,23,0.08);
  border: 0.5px solid rgba(186,117,23,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.perk-title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex: 1;
}

.perk-title {
  font-size: 13px;
  font-weight: 500;
  color: #f5eedc;
}

.perk-value {
  font-size: 12px;
  font-weight: 500;
  color: #EF9F27;
  letter-spacing: 0.04em;
}

.perk-desc {
  font-size: 12px;
  color: #4a4030;
  line-height: 1.6;
  margin-bottom: 10px;
  margin-left: 42px;
}

.perk-bar-wrap {
  height: 3px;
  background: rgba(186,117,23,0.1);
  border-radius: 2px;
  overflow: hidden;
}

.perk-bar {
  height: 100%;
  background: linear-gradient(90deg, rgba(186,117,23,0.4), #EF9F27);
  border-radius: 2px;
  animation: bar-fill 1.2s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.perk-bar-rainbow {
  background: linear-gradient(90deg, #EF9F27, #e2c24a, #EF9F27);
  background-size: 200% 100%;
  animation: bar-fill 1.2s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* Redundancia perk – add hozzá a perks.css-hez */
 
@keyframes bar-pulse {
  0% { width: 0%; }
  70% { width: 100%; }
  80% { width: 92%; }
  90% { width: 100%; }
  100% { width: 97%; }
}
 
.perk-bar-pulse {
  height: 100%;
  background: linear-gradient(90deg, rgba(186,117,23,0.3), #EF9F27, rgba(239,159,39,0.6));
  border-radius: 2px;
  animation: bar-pulse 2s cubic-bezier(0.4, 0, 0.2, 1) both;
}
 

/* Alapítói kártyák */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 220px);
  gap: 20px;
  animation: fade-in 0.8s ease 0.9s both;
}

.founder-card {
  background: rgba(186,117,23,0.05);
  border: 0.5px solid rgba(186,117,23,0.2);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s, background 0.2s;
}

.founder-card:hover {
  border-color: rgba(186,117,23,0.45);
  background: rgba(186,117,23,0.08);
}

.founder-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: rgba(186,117,23,0.06);
  border-bottom: 0.5px solid rgba(186,117,23,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.photo-placeholder-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0.5px solid rgba(186,117,23,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-placeholder-text {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #3a3020;
  text-transform: uppercase;
}

.founder-info {
  padding: 1rem 1.1rem 1.25rem;
}

.founder-name {
  font-size: 14px;
  font-weight: 500;
  color: #f5eedc;
  margin-bottom: 4px;
}

.founder-rank {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #63571f;
}

/* Footer */
.footer {
  margin-top: 4rem;
  font-size: 11px;
  color: #2c2820;
  letter-spacing: 0.08em;
}
