:root{
  --bg:#070A0D;
  --surface:#0B1014;
  --card:#0F161B;
  --line:rgba(255,255,255,.10);

  --title:#F4F8F6;
  --body:rgba(244,248,246,.90);
  --sub:rgba(244,248,246,.78);
  --muted:rgba(244,248,246,.62);

  --whyGreen:#29E36B;
  --whyGreenHi:#2FEA78;
  --whyGreenLo:#19B84E;

  --ytRed:#FF0000;
  --warning:#FFD24A;

  --shadow: 0 14px 38px rgba(0,0,0,.46);
  --r:20px;

  --starter:#74F3C6;
  --creator:#74D7FF;
  --pro:#FFE08A;
  --a3:#29E36B;
  --a4:#FFD24A;
  --a5:#FF6B6B;

  --font:"Pretendard Variable", Pretendard, ui-sans-serif, system-ui, -apple-system, "Apple SD Gothic Neo", "Noto Sans KR", Segoe UI, Roboto, sans-serif;
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family:var(--font);
  color:var(--body);
  letter-spacing:-0.2px;
  background:
    radial-gradient(1050px 640px at 10% -10%, rgba(41,227,107,.14), transparent 58%),
    radial-gradient(900px 600px at 100% 0%, rgba(255,0,0,.06), transparent 58%),
    var(--bg);
}

a{color:inherit}
.wrap{min-height:100vh; display:flex; flex-direction:column;}

.top{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px 18px 10px;
  max-width:1180px; margin:0 auto; width:100%;
  gap:12px;
  flex-wrap:wrap;
}

.brand{
  text-decoration:none;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
}

.brandName{
  font-size:46px;
  font-weight:950;
  letter-spacing:-1px;
  color:var(--whyGreen);
  line-height:1;
}

.brandTag{
  font-size:18px;
  font-weight:900;
  color:var(--sub);
  line-height:1.1;
}

.pillRow{
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  width:100%;
  margin-top:8px;
}

.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.16);
  color:var(--sub);
  font-size:14.5px;
  font-weight:900;
  white-space:nowrap;
}

.btnTop{
  appearance:none;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.18);
  color:rgba(244,248,246,.92);
  border-radius:14px;
  padding:10px 12px;
  font-weight:950;
  font-size:13.5px;
  cursor:pointer;
  transition:.15s ease;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:140px;
  position:relative;
  overflow:hidden;
}
.btnTop:hover{ background:rgba(255,255,255,.06); border-color:rgba(255,255,255,.18); color:var(--title); transform: translateY(-1px); }
.btnTop::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.12) 35%, transparent 65%);
  opacity:0;
  transform: translateX(-30%);
  transition:.22s ease;
  pointer-events:none;
}
.btnTop:hover::before{ opacity:.55; transform: translateX(30%); }

.container{
  max-width:1180px;
  margin:0 auto;
  width:100%;
  padding:10px 18px 18px;
}

.card{
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  border-radius:var(--r);
  padding:18px;
  box-shadow:var(--shadow);
}

.heroGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:12px;
  align-items:start;
}

.hTitle{
  margin:0;
  font-size:36px;
  font-weight:950;
  letter-spacing:-0.85px;
  color:var(--title);
  line-height:1.15;
}

.hSub{
  margin:12px 0 0;
  font-size:18px;
  font-weight:850;
  color:rgba(244,248,246,.92);
  line-height:1.7;
  max-width:80ch;
}

.hSub strong{
  color:var(--title);
  font-weight:950;
  border-bottom:2px solid rgba(41,227,107,.45);
  padding-bottom:2px;
}

/* ✅ free trial box */
.trialBox{
  margin-top:14px;
  border:1px solid rgba(41,227,107,.32);
  background: linear-gradient(180deg, rgba(41,227,107,.20), rgba(41,227,107,.11));
  border-radius:18px;
  padding:14px;
  box-shadow: 0 14px 34px rgba(41,227,107,.12);
  transition: .18s ease;
  position:relative;
  overflow:hidden;
}
.trialBox::before{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(900px 320px at 20% 0%, rgba(255,255,255,.10), transparent 60%);
  opacity:.55;
  pointer-events:none;
}
.trialBox:hover{ transform: translateY(-2px); border-color: rgba(41,227,107,.42); }

.trialBig{ margin:0; font-size:19px; font-weight:950; color:rgba(244,248,246,.96); position:relative; }
.trialMeta{ margin:10px 0 0; font-size:16px; font-weight:850; color:rgba(244,248,246,.84); line-height:1.65; position:relative; }
.trialMeta b{color:rgba(244,248,246,.96); font-weight:950}
.trialFine{ display:inline-block; margin-top:8px; color: rgba(244,248,246,.72); font-size:14.5px; line-height:1.65; }

.trialUsedNote{
  margin-top:10px;
  display:none;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.14);
  border-radius:14px;
  padding:10px 12px;
  font-size:13.5px;
  font-weight:850;
  color:rgba(244,248,246,.78);
  line-height:1.55;
  position:relative;
}
.trialDisabled{ filter:saturate(.95); opacity:.78; }
.trialDisabled .trialUsedNote{ display:block; }

.form{ display:flex; flex-direction:column; gap:10px; margin-top:12px; }
.label{ font-size:15px; font-weight:950; color:rgba(244,248,246,.84); }

.input{
  width:100%;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(0,0,0,.20);
  padding:14px 12px;
  color:rgba(244,248,246,.96);
  font-size:16px;
  font-weight:900;
  outline:none;
}
.input:focus{ border-color: rgba(41,227,107,.74); box-shadow: 0 0 0 8px rgba(41,227,107,.16); }

.row{ display:flex; gap:10px; flex-wrap:wrap; align-items:center; }
.row2 .btn{ min-width:180px; }

.subRow{
  margin-top:2px;
  font-size:13.5px;
  font-weight:850;
  color:rgba(244,248,246,.68);
  line-height:1.55;
}

.btn{
  appearance:none;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.18);
  color:rgba(244,248,246,.94);
  border-radius:14px;
  padding:14px 14px;
  font-weight:950;
  font-size:16px;
  cursor:pointer;
  transition:.16s ease;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  flex:1 1 auto;
  min-width:180px;
  position:relative;
  overflow:hidden;
  transform: translateY(0);
}
.btn:hover{
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.18);
  color:var(--title);
  transform: translateY(-2px);
}
.btn::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.14) 35%, transparent 65%);
  opacity:0;
  transform: translateX(-30%);
  transition:.22s ease;
  pointer-events:none;
}
.btn:hover::before{ opacity:.55; transform: translateX(30%); }

.btn.primary{
  background: linear-gradient(180deg, var(--whyGreenHi), var(--whyGreen));
  border-color: rgba(34,197,94,.85);
  color:#04120A;
  box-shadow: 0 14px 34px rgba(34,197,94,.26), 0 0 0 1px rgba(34,197,94,.25) inset;
}
.btn.primary:disabled{ opacity:.55; cursor:not-allowed; transform:none; }
.btn.primary:disabled::before{ display:none; }

.btn.plain{ min-width:170px; flex:0 0 auto; }

.sideCard{
  background:rgba(0,0,0,.14);
  border:1px solid rgba(255,255,255,.10);
  border-radius:var(--r);
  padding:18px;
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
}
.sideCard::before{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(900px 420px at 20% 0%, rgba(255,255,255,.06), transparent 62%);
  opacity:.75;
  pointer-events:none;
}

.sTitle{ margin:0; font-size:21px; font-weight:950; color:var(--title); position:relative; }
.sText{ margin:12px 0 0; font-size:16.5px; font-weight:900; color:rgba(244,248,246,.88); line-height:1.75; position:relative; }

.bullets{ margin:14px 0 0; padding:0; list-style:none; display:flex; flex-direction:column; gap:10px; position:relative; }
.bullets li{
  display:flex; gap:10px; align-items:flex-start;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.14);
  border-radius:16px;
  padding:12px 12px;
  color:rgba(244,248,246,.90);
  font-size:16px;
  font-weight:900;
  line-height:1.65;
  transition:.16s ease;
}
.bullets li:hover{ background:rgba(255,255,255,.06); border-color: rgba(255,255,255,.16); transform: translateY(-1px); }

.dot{ width:10px; height:10px; border-radius:999px; background:var(--whyGreen); box-shadow: 0 0 0 8px rgba(41,227,107,.12); margin-top:6px; flex:0 0 auto; }
.dot.red{ background:rgba(255,0,0,.94); box-shadow: 0 0 0 8px rgba(255,0,0,.10); }

.sideNote{
  margin:14px 0 0;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.14);
  border-radius:16px;
  padding:12px;
  color:rgba(244,248,246,.84);
  font-size:15.5px;
  font-weight:900;
  line-height:1.65;
  display:flex;
  gap:10px;
  align-items:flex-start;
  position:relative;
  transition:.16s ease;
}
.sideNote:hover{ background:rgba(255,255,255,.06); border-color: rgba(255,255,255,.16); transform: translateY(-1px); }
.noteDot{ width:10px; height:10px; border-radius:999px; background:rgba(255,0,0,.94); box-shadow: 0 0 0 8px rgba(255,0,0,.10); margin-top:6px; flex:0 0 auto; }

.foot{ max-width:1180px; margin:0 auto; width:100%; padding:0 18px 18px; }
.legal{ border:1px solid rgba(255,255,255,.10); background:rgba(0,0,0,.18); border-radius:18px; padding:12px; color:var(--sub); font-size:12.5px; font-weight:750; line-height:1.7; display:flex; flex-wrap:wrap; gap:8px 12px; align-items:center; }

/* ✅ Guide Modal */
.guideBack{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,.70);
  z-index:999998;
  padding:18px;
}
.guideModal{
  width:100%;
  max-width:620px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(11,16,20,.94), rgba(11,16,20,.88));
  box-shadow: 0 30px 90px rgba(0,0,0,.82);
  padding:18px;
}
.guideTop{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}
.guideTitle{
  margin:0;
  font-size:18px;
  font-weight:950;
  color:rgba(244,248,246,.96);
}
.guideSub{
  margin:8px 0 0;
  font-size:15px;
  font-weight:850;
  color:rgba(244,248,246,.78);
  line-height:1.7;
}
.guideClose{
  appearance:none;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(0,0,0,.18);
  color:rgba(244,248,246,.92);
  border-radius:14px;
  padding:10px 12px;
  font-weight:950;
  cursor:pointer;
  transition:.16s ease;
}
.guideClose:hover{ background:rgba(255,255,255,.06); border-color:rgba(255,255,255,.22); color:var(--title); transform: translateY(-1px); }

.guideBody{ margin-top:10px; }
.guideNote{
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.14);
  border-radius:16px;
  padding:12px;
  color:rgba(244,248,246,.84);
  font-size:14px;
  font-weight:850;
  line-height:1.65;
}
.guideActions{
  margin-top:12px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.guideTiny{
  margin-top:10px;
  font-size:12.5px;
  font-weight:850;
  color:rgba(244,248,246,.65);
  line-height:1.55;
}

/* OTP Modal (원본 유지) */
.otpBack{ position:fixed; inset:0; display:none; align-items:center; justify-content:center; background:rgba(0,0,0,.78); z-index:999999; padding:18px; }
.otpModal{ width:100%; max-width:560px; border-radius:24px; border:2px solid rgba(116,215,255,.35); background: linear-gradient(180deg, rgba(11,16,20,.98), rgba(11,16,20,.92)); box-shadow: 0 30px 90px rgba(0,0,0,.82); padding:18px; }
.otpTop{ display:flex; align-items:flex-start; justify-content:space-between; gap:12px; margin-bottom:10px; }
.otpTitle{ margin:0; font-size:18px; font-weight:950; color:rgba(244,248,246,.96); }
.otpClose{ appearance:none; border:1px solid rgba(255,255,255,.18); background:rgba(0,0,0,.18); color:rgba(244,248,246,.92); border-radius:14px; padding:10px 12px; font-weight:950; cursor:pointer; transition:.16s ease; }
.otpClose:hover{ background:rgba(255,255,255,.06); border-color:rgba(255,255,255,.22); color:var(--title); transform: translateY(-1px); }
.otpHint{ margin:0; font-size:15px; font-weight:850; color:rgba(244,248,246,.78); line-height:1.7; }
.otpRow{ margin-top:12px; display:flex; gap:10px; flex-wrap:wrap; align-items:center; }
.otpDev{ margin-top:10px; font-size:12.5px; font-weight:900; color:rgba(244,248,246,.72); word-break:break-word; opacity:.95; }
.otpNotice{
  margin-top:10px;
  font-size:13.5px;
  font-weight:800;
  color:rgba(244,248,246,.65);
  line-height:1.6;
}

@media (max-width:1050px){
  .heroGrid{grid-template-columns:1fr}
  .brandName{font-size:40px}
  .brandTag{font-size:16px}
}

/* ========================= */
/* 🔴 Subscribe CTA (Red) */
/* ========================= */
.btn.subscribeRed{
  background: linear-gradient(180deg, #ff3b30, #ff0000);
  border-color: rgba(255,0,0,.85);
  color:#ffffff;
  box-shadow:
    0 14px 34px rgba(255,0,0,.26),
    0 0 0 1px rgba(255,0,0,.35) inset;
}
.btn.subscribeRed:hover{
  background: linear-gradient(180deg, #ff4d43, #ff1a1a);
  border-color: rgba(255,0,0,.95);
  color:#ffffff;
  transform: translateY(-2px);
}
.btn.subscribeRed::before{ display:none; }

/* ADD BLOCK: center footer items horizontally (keep flex row) */
.legal { justify-content: center; }
/* END ADD BLOCK */
