@font-face{
  font-family:'ErasMedium';
  src:url('fonts/ErasMediumITC.ttf') format('truetype');
}

:root{
  --gl-cyan:#05b8be;
  --gl-light:#caf2f3;
  --gl-card:rgba(3,11,24,0.94);
  --gl-line:rgba(202,242,243,0.14);
  --gl-soft:rgba(255,255,255,0.04);
}

*{box-sizing:border-box}
html,body{
  margin:0;
  padding:0;
  width:100%;
  max-width:100%;
  overflow-x:hidden;
}
body{
  font-family:'ErasMedium', Arial, sans-serif;
  color:#fff;
  background:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.78)),
    url("/images/GURU.png") center center / cover no-repeat fixed #000;
}

.page-shell{
  width:min(100%, 1400px);
  margin:0 auto;
  padding:18px 14px 40px;
}

.gl-card{
  background:var(--gl-card);
  border:1px solid var(--gl-line);
  border-radius:22px;
  box-shadow:0 16px 40px rgba(0,0,0,.22);
  overflow:hidden;
}

.topbar{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  padding:18px 20px;
  margin-bottom:16px;
}
.brand-wrap{
  display:flex;
  align-items:flex-start;
  gap:14px;
  min-width:0;
  flex:1 1 auto;
}
.logo-badge{
  width:42px;
  height:42px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(5,184,190,0.08);
  border:1px solid rgba(202,242,243,0.2);
  flex:0 0 auto;
}
.logo-badge img{
  width:22px;
  height:22px;
  object-fit:contain;
}
.brand-text{
  min-width:0;
}
.brand-text h1{
  margin:0 0 4px;
  color:#fff;
  font-size:clamp(24px, 3vw, 34px);
  line-height:1.15;
}
.brand-text p{
  margin:0;
  color:var(--gl-light);
  opacity:.95;
  font-size:15px;
  line-height:1.5;
}

.topbar-actions{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.gl-btn-outline,
.gl-btn-soft,
.gl-btn-primary{
  border:none;
  border-radius:14px;
  padding:12px 18px;
  font-weight:700;
  cursor:pointer;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:48px;
}
.gl-btn-outline{
  color:#fff;
  background:transparent;
  border:1px solid var(--gl-line);
}
.gl-btn-soft{
  color:#dbeff1;
  background:rgba(255,255,255,0.08);
  border:1px solid var(--gl-line);
}
.gl-btn-primary{
  color:#00131a;
  background:var(--gl-cyan);
}

.layout{
  display:grid;
  grid-template-columns:minmax(0, 1.55fr) minmax(320px, .9fr);
  gap:16px;
}

.left-stack,
.right-stack{
  display:flex;
  flex-direction:column;
  gap:16px;
  min-width:0;
}

.hero-card{
  padding:18px;
}
.hero-grid{
  display:grid;
  grid-template-columns:minmax(0, 1.2fr) minmax(280px, .85fr);
  gap:18px;
  align-items:stretch;
}
.hero-left{min-width:0}
.hero-tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(255,255,255,0.05);
  border:1px solid var(--gl-line);
  color:#d9eef1;
  margin-bottom:16px;
  font-size:14px;
}
.hero-title{
  margin:0 0 14px;
  font-size:clamp(34px, 5vw, 58px);
  line-height:1.08;
}
.hero-text{
  color:#dceff1;
  line-height:1.7;
  font-size:17px;
  margin-bottom:18px;
}
.hero-points{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:12px;
}
.hero-point{
  background:rgba(255,255,255,0.04);
  border:1px solid var(--gl-line);
  border-radius:18px;
  padding:16px;
}
.hero-point h3{
  margin:0 0 8px;
  color:#7de6ec;
  font-size:18px;
}
.hero-point p{
  margin:0;
  color:#dbeff1;
  line-height:1.6;
  font-size:15px;
}

.founder-panel{
  height:100%;
  background:rgba(255,255,255,0.035);
  border:1px solid var(--gl-line);
  border-radius:20px;
  padding:18px;
  text-align:center;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.founder-image{
  width:100%;
  max-width:300px;
  height:320px;
  margin:0 auto 14px;
  object-fit:contain;
  object-position:center top;
  border-radius:18px;
  border:2px solid rgba(202,242,243,0.22);
  background:#111;
  padding:6px;
}
.founder-title{
  margin:0 0 8px;
  color:#efc35f;
  font-size:18px;
}
.founder-text{
  margin:0;
  color:#dceef0;
  line-height:1.7;
  font-size:15px;
}

.section-card{padding:18px}
.section-title{
  margin:0 0 14px;
  color:#fff;
  font-size:18px;
}
.section-subtitle{
  margin:-4px 0 14px;
  color:#dceef0;
  opacity:.95;
  line-height:1.6;
  font-size:14px;
}

.supporter-strip{
  width:100%;
  overflow:hidden;
  white-space:nowrap;
  border:1px solid var(--gl-line);
  border-radius:14px;
  padding:12px 0;
  margin-bottom:14px;
  background:rgba(255,255,255,0.04);
}
.supporter-track{
  display:inline-block;
  padding-left:100%;
  color:var(--gl-light);
  font-weight:700;
  animation:scrollSupporters 22s linear infinite;
}
@keyframes scrollSupporters{
  0%{transform:translateX(0)}
  100%{transform:translateX(-100%)}
}

.showcase-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:12px;
}
.showcase-card{
  background:rgba(255,255,255,0.04);
  border:1px solid var(--gl-line);
  border-radius:16px;
  overflow:hidden;
}
.showcase-card img{
  width:100%;
  display:block;
  aspect-ratio:1 / 1;
  object-fit:cover;
  background:#111;
}

.impact-grid,
.purpose-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:12px;
}
.impact-box,
.choice-chip{
  background:rgba(255,255,255,0.04);
  border:1px solid var(--gl-line);
  border-radius:16px;
  padding:14px;
}
.impact-box h4,
.choice-chip h4{
  margin:0 0 8px;
  color:#7de6ec;
  font-size:18px;
}
.impact-box p,
.choice-chip p{
  margin:0;
  color:#dceef0;
  line-height:1.6;
  font-size:14px;
}

.form-card{padding:18px}
.form-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
}
.full-span{grid-column:1 / -1}
.gl-label{
  display:block;
  color:#dceff1;
  margin-bottom:7px;
  font-size:14px;
}
.gl-input,
.gl-select,
.gl-textarea,
.gl-file{
  width:100%;
  min-width:0;
  background:rgba(255,255,255,0.045);
  color:#fff;
  border:1px solid var(--gl-line);
  border-radius:14px;
  padding:12px 14px;
  min-height:48px;
}
.gl-input::placeholder,
.gl-textarea::placeholder{color:rgba(255,255,255,.6)}
.gl-select option{color:#000}
.gl-textarea{
  min-height:120px;
  resize:vertical;
}
.choice-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.choice-chip{
  padding:10px 14px;
}
.choice-chip input{
  margin-right:6px;
}
.form-note{
  margin-top:12px;
  background:rgba(255,255,255,0.04);
  border:1px solid var(--gl-line);
  border-radius:14px;
  padding:12px 14px;
  color:#dceef0;
  font-size:14px;
  line-height:1.6;
}
.form-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:16px;
}
.status-box{
  display:none;
  margin-top:14px;
  padding:12px 14px;
  border-radius:14px;
  font-weight:700;
}
.status-success{display:block;background:rgba(25,163,91,.16);border:1px solid rgba(25,163,91,.35);color:#9df0c0}
.status-error{display:block;background:rgba(220,53,69,.16);border:1px solid rgba(220,53,69,.35);color:#ffc1c8}
.status-info{display:block;background:rgba(5,184,190,.12);border:1px solid rgba(5,184,190,.28);color:var(--gl-light)}

.timeline{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.timeline-item{
  display:grid;
  grid-template-columns:18px 1fr;
  gap:12px;
  align-items:flex-start;
}
.timeline-dot{
  width:14px;
  height:14px;
  border-radius:50%;
  background:var(--gl-cyan);
  margin-top:6px;
  box-shadow:0 0 16px rgba(5,184,190,.5);
}
.timeline-box{
  background:rgba(255,255,255,0.04);
  border:1px solid var(--gl-line);
  border-radius:16px;
  padding:12px 14px;
}
.timeline-box h4{
  margin:0 0 5px;
  font-size:16px;
}
.timeline-box p{
  margin:0;
  color:#dceef0;
  font-size:14px;
  line-height:1.6;
}

.qr-box{
  text-align:center;
  background:rgba(255,255,255,0.04);
  border:1px solid var(--gl-line);
  border-radius:16px;
  padding:16px;
  margin-bottom:14px;
}
.qr-box img{
  width:170px;
  height:170px;
  object-fit:contain;
  display:block;
  margin:0 auto 10px;
  background:#fff;
  border-radius:10px;
  padding:8px;
}
.tiny-note{
  color:#dceef0;
  font-size:13px;
  line-height:1.5;
}
.info-table{
  display:grid;
  gap:10px;
}
.info-row{
  display:grid;
  grid-template-columns:80px 1fr auto;
  gap:10px;
  align-items:center;
  background:rgba(255,255,255,0.03);
  border:1px solid var(--gl-line);
  border-radius:14px;
  padding:10px 12px;
}
.info-key{color:#93e7ec;font-size:13px}
.info-value{
  color:#fff;
  word-break:break-word;
  font-size:14px;
}
.copy-btn{
  background:#10233a;
  color:#fff;
  border:1px solid var(--gl-line);
  border-radius:10px;
  padding:8px 12px;
  font-weight:700;
  cursor:pointer;
}

.small-pill-row{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.small-pill{
  background:rgba(255,255,255,0.04);
  border:1px solid var(--gl-line);
  color:#dceef0;
  border-radius:999px;
  padding:8px 12px;
  font-size:13px;
}

.preview-media{
  min-height:220px;
  background:rgba(255,255,255,0.03);
  border:1px dashed rgba(202,242,243,0.20);
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  text-align:center;
  padding:14px;
}
.preview-media img,
.preview-media iframe{
  max-width:100%;
  max-height:320px;
  border:none;
  border-radius:10px;
}

.history-list{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.history-item{
  display:grid;
  grid-template-columns:18px 1fr;
  gap:12px;
}
.history-dot{
  width:14px;
  height:14px;
  border-radius:50%;
  background:var(--gl-cyan);
  margin-top:6px;
}
.history-card{
  background:rgba(255,255,255,0.04);
  border:1px solid var(--gl-line);
  border-radius:16px;
  padding:12px 14px;
}
.history-card h4{
  margin:0 0 4px;
  font-size:16px;
}
.history-card p{
  margin:0;
  color:#dceef0;
  line-height:1.6;
  font-size:14px;
}

.ai-list{
  margin:0;
  padding-left:18px;
  color:#dceef0;
  line-height:1.8;
  font-size:14px;
}

.footer-note{
  text-align:center;
  color:#dceef0;
  opacity:.92;
  font-size:13px;
  line-height:1.6;
  margin-top:14px;
}

/* large tablet */
@media (max-width: 1199px){
  .layout{
    grid-template-columns:1fr;
  }
  .hero-grid{
    grid-template-columns:1fr;
  }
  .hero-points,
  .impact-grid,
  .purpose-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

/* tablet */
@media (max-width: 900px){
  .page-shell{
    padding:14px 10px 30px;
  }
  .topbar{
    flex-direction:column;
    align-items:stretch;
  }
  .topbar-actions{
    width:100%;
    justify-content:stretch;
  }
  .topbar-actions a,
  .topbar-actions button{
    flex:1 1 220px;
  }
  .hero-title{
    font-size:42px;
  }
  .showcase-grid{
    grid-template-columns:repeat(2, 1fr);
  }
  .form-grid{
    grid-template-columns:1fr;
  }
  .impact-grid,
  .purpose-grid,
  .hero-points{
    grid-template-columns:1fr;
  }
}

/* mobile */
@media (max-width: 600px){
  .page-shell{
    padding:10px 8px 24px;
  }
  .topbar{
    padding:14px;
    border-radius:18px;
  }
  .brand-wrap{
    align-items:flex-start;
  }
  .brand-text h1{
    font-size:17px;
    line-height:1.25;
  }
  .brand-text p{
    font-size:12px;
  }
  .topbar-actions{
    flex-direction:column;
    align-items:stretch;
  }
  .topbar-actions a,
  .topbar-actions button{
    width:100%;
    flex:none;
  }
  .hero-card,
  .section-card,
  .form-card{
    padding:14px;
  }
  .hero-title{
    font-size:26px;
    line-height:1.15;
  }
  .hero-text{
    font-size:14px;
  }
  .hero-point h3,
  .impact-box h4,
  .choice-chip h4{
    font-size:16px;
  }
  .founder-image{
    height:220px;
    max-width:220px;
  }
  .showcase-grid{
    grid-template-columns:1fr;
  }
  .showcase-card img{
    aspect-ratio:1 / 1;
  }
  .choice-row,
  .form-actions{
    flex-direction:column;
  }
  .form-actions button{
    width:100%;
  }
  .info-row{
    grid-template-columns:1fr;
    gap:6px;
    align-items:flex-start;
  }
  .copy-btn{
    width:100%;
  }
  .qr-box img{
    width:180px;
    height:180px;
    max-width:100%;
  }
  .timeline-item,
  .history-item{
    grid-template-columns:16px 1fr;
    gap:10px;
  }
}
.founder-logo{
    display:block;
    width:175px;
    height:auto;
    margin:0 auto 18px;
}
