
/* ============================================================
   SIX-WEEK GAME PLAN — LuckyOne Global visual system
   ============================================================ */
:root{
  --primary:        #8CCEFF;
  --primary-dark:   #3BA8F5;
  --primary-deep:   #1E88D8;
  --primary-light:  #EAF8FF;
  --primary-soft:   #F5FBFF;
  --text-dark:      #102A43;
  --text-muted:     #64748B;
  --border-light:   #DCEEFF;
  --white:          #FFFFFF;

  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --shadow-card:  0 6px 24px rgba(59,168,245,.10);
  --shadow-hover: 0 14px 34px rgba(59,168,245,.18);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-pill: 999px;

  --container: 1180px;
}

*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  font-family:var(--font-body);
  color:var(--text-dark);
  background:var(--white);
  line-height:1.7;
  font-size:16px;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ text-decoration:none; color:inherit; }
ul{ list-style:none; }
button{ font-family:inherit; cursor:pointer; }

.container{ width:min(var(--container), 92%); margin-inline:auto; }

h1,h2,h3,h4{ font-family:var(--font-display); line-height:1.25; color:var(--text-dark); }

.section{ padding:88px 0; }
.section[id], .hero[id]{ scroll-margin-top:92px; }
.section-head{ max-width:660px; margin:0 auto 48px; text-align:center; }
.section-head.left{ margin:0 0 40px; text-align:left; }
.eyebrow{
  display:inline-block;
  font-family:var(--font-display);
  font-size:.78rem; font-weight:700;
  letter-spacing:.16em; text-transform:uppercase;
  color:var(--primary-dark);
  margin-bottom:14px;
}
.section-title{ font-size:clamp(1.6rem, 3vw, 2.2rem); font-weight:800; }
.section-sub{ color:var(--text-muted); margin-top:14px; font-size:1rem; }

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:13px 30px; border-radius:var(--radius-pill);
  font-family:var(--font-display); font-weight:700; font-size:.95rem;
  border:2px solid transparent; background:none;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.btn-primary{
  background:var(--primary); color:var(--white);
  box-shadow:0 8px 20px rgba(140,206,255,.45);
}
.btn-primary:hover{ background:var(--primary-dark); transform:translateY(-2px); box-shadow:0 12px 26px rgba(59,168,245,.4); }
.btn-outline{
  background:var(--white); color:var(--primary-dark);
  border-color:var(--primary);
}
.btn-outline:hover{ background:var(--primary-light); transform:translateY(-2px); }

/* ============================================================
   HEADER
   ============================================================ */
.header{
  position:sticky; top:0; z-index:100;
  background:rgba(255,255,255,.85);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--border-light);
  transition:box-shadow .35s ease, background .35s ease;
}
.header.scrolled{
  background:rgba(255,255,255,.96);
  box-shadow:0 10px 30px rgba(16,42,67,.08);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:24px; height:76px;
  transition:height .35s cubic-bezier(.4,0,.2,1);
}
.header.scrolled .header-inner{ height:62px; }
.logo-img{
  display:block; height:42px; width:auto; max-width:220px; object-fit:contain;
  transition:height .35s cubic-bezier(.4,0,.2,1);
}
.header.scrolled .logo-img{ height:32px; }

.nav{ position:relative; display:flex; align-items:center; gap:32px; }
.nav-indicator{
  position:absolute; left:0; bottom:2px; height:2.5px; border-radius:2px;
  background:var(--primary-dark);
  opacity:0;
  transition:transform .4s cubic-bezier(.4,0,.2,1), width .4s cubic-bezier(.4,0,.2,1), opacity .25s ease;
  pointer-events:none;
}
.nav-indicator.is-active{ opacity:1; }
.nav > a{
  position:relative;
  font-family:var(--font-display); font-weight:600; font-size:.92rem;
  color:var(--text-muted); padding:6px 0;
  white-space:nowrap;
  transition:color .2s ease;
}
.nav > a:hover{ color:var(--primary-dark); }
.nav > a.active{ color:var(--primary-dark); }

.header-actions{ display:flex; align-items:center; gap:18px; }

.lang{ display:flex; align-items:center; gap:14px; }
.nav-lang{ display:none; }
.lang-item{
  display:flex; align-items:center; gap:6px;
  font-family:var(--font-display); font-weight:600; font-size:.82rem;
  color:var(--text-muted); opacity:.65;
  transition:color .2s ease, opacity .2s ease;
}
.lang-item:hover{ color:var(--primary-dark); opacity:1; }
.lang-item.active{ color:var(--primary-dark); opacity:1; }
.flag-icon{
  display:inline-flex; flex-shrink:0; width:18px; height:18px;
  border-radius:50%; overflow:hidden;
  box-shadow:0 0 0 1px rgba(16,42,67,.1);
}
.flag-icon svg{ display:block; width:100%; height:100%; }
@media (max-width:400px){
  .lang{ gap:10px; }
  .lang-label{ display:none; }
}

.nav-toggle{
  display:none; flex-direction:column; align-items:center; justify-content:center;
  gap:5px; background:none; border:none; width:42px; height:42px;
  border-radius:10px; cursor:pointer;
  transition:background .2s ease;
}
.nav-toggle:hover{ background:var(--primary-light); }
.nav-toggle .bar{
  width:20px; height:2px; border-radius:2px; background:var(--text-dark);
  transition:transform .3s cubic-bezier(.4,0,.2,1), opacity .2s ease;
}
.nav-toggle.open .bar:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle.open .bar:nth-child(2){ opacity:0; transform:scaleX(0); }
.nav-toggle.open .bar:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

@media (max-width:1000px){
  .nav{
    position:fixed; inset:76px 0 auto 0;
    background:var(--white); border-bottom:1px solid var(--border-light);
    flex-direction:column; gap:2px; padding:18px 6%;
    align-items:flex-start;
    transform:translateY(-12px); opacity:0; pointer-events:none;
    transition:opacity .3s ease, transform .3s ease;
    box-shadow:0 18px 30px rgba(16,42,67,.08);
  }
  .nav-indicator{ display:none; }
  .nav > a{
    padding:11px 0; width:100%; font-size:1rem;
    opacity:0; transform:translateX(-10px);
    transition:opacity .3s ease, transform .3s ease, color .25s ease;
  }
  .nav > a.active{
    text-decoration:underline; text-decoration-color:var(--primary-dark);
    text-decoration-thickness:2.5px; text-underline-offset:6px;
  }
  .nav.open > a{ opacity:1; transform:none; }
  .nav.open > a:nth-of-type(1){ transition-delay:.04s; }
  .nav.open > a:nth-of-type(2){ transition-delay:.08s; }
  .nav.open > a:nth-of-type(3){ transition-delay:.12s; }
  .nav.open > a:nth-of-type(4){ transition-delay:.16s; }
  .nav.open > a:nth-of-type(5){ transition-delay:.2s; }
  .nav.open > a:nth-of-type(6){ transition-delay:.24s; }
  .nav.open{ transform:none; opacity:1; pointer-events:auto; }
  .nav-toggle{ display:flex; }
  .header-actions .lang{ display:none; }
  .header-actions{ gap:12px; }

  .nav-lang{
    display:flex; width:100%; margin-top:14px; padding-top:16px;
    border-top:1px solid var(--border-light);
    opacity:0; transform:translateX(-10px);
    transition:opacity .3s ease, transform .3s ease;
  }
  .nav.open .nav-lang{ opacity:1; transform:none; transition-delay:.28s; }
}
@media (max-width:480px){
  .lang{ font-size:.72rem; gap:5px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position:relative;
  overflow:hidden;
  text-align:center;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background:url('assets/pexels-walking-1868652_1280.jpg') center 30%/cover no-repeat;
  z-index:0;
}
.hero::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(135deg, rgba(255,255,255,.94) 0%, rgba(234,248,255,.9) 45%, rgba(140,206,255,.62) 100%);
  z-index:1;
}
.hero-inner{ position:relative; z-index:2; padding:80px 0 120px; }
.hero-copy{ max-width:720px; margin-inline:auto; }
.hero-title{
  font-size:clamp(2.2rem, 5vw, 3.4rem);
  font-weight:800; letter-spacing:-.02em; margin-bottom:20px;
}
.hero-title .dot{ color:var(--primary-dark); }
.hero-text{ color:var(--text-muted); max-width:560px; margin:0 auto 34px; font-size:1.05rem; }
.hero-meta{ display:flex; gap:10px; justify-content:center; flex-wrap:wrap; }
.hero-chip{
  font-family:var(--font-display); font-weight:700; font-size:.82rem;
  color:var(--primary-deep); background:var(--white);
  border:1px solid var(--border-light); box-shadow:var(--shadow-card);
  padding:9px 18px; border-radius:var(--radius-pill);
}

.hero-wave{ position:absolute; left:0; right:0; bottom:-1px; line-height:0; z-index:2; }
.hero-wave svg{ width:100%; height:80px; display:block; }

@media (max-width:900px){ .hero-inner{ padding:60px 0 100px; } }

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band{
  display:grid; grid-template-columns:repeat(3,1fr); gap:20px;
  margin-top:-64px; position:relative; z-index:3;
}
.stat-card{
  background:var(--white); border:1px solid var(--border-light);
  border-radius:var(--radius-lg); box-shadow:var(--shadow-card);
  padding:28px 20px; text-align:center;
}
.stat-card strong{
  font-family:var(--font-display); font-weight:800;
  font-size:1.9rem; color:var(--primary-dark); display:block;
}
.stat-card span{ font-size:.85rem; color:var(--text-muted); }
@media (max-width:700px){ .stats-band{ grid-template-columns:1fr; margin-top:-40px; } }

/* ============================================================
   TIMELINE (Six-Week Game Plan)
   ============================================================ */
.timeline{ display:grid; gap:16px; }
.week-row{
  display:grid; grid-template-columns:150px 1fr; gap:20px; align-items:stretch;
  background:var(--white); border:1px solid var(--border-light);
  border-radius:var(--radius-md); overflow:hidden;
  box-shadow:var(--shadow-card);
  transition:transform .25s ease, box-shadow .25s ease;
}
.week-row:hover{ transform:translateY(-4px); box-shadow:var(--shadow-hover); }
.week-tag{
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display); font-weight:800; font-size:1.02rem;
  letter-spacing:.03em; color:var(--white);
  background:var(--primary-dark);
}
.week-row.phase-2 .week-tag{ background:var(--primary-deep); }
.week-body{ padding:20px 22px; display:flex; align-items:center; color:var(--text-dark); font-size:.98rem; }
@media (max-width:640px){
  .week-row{ grid-template-columns:1fr; }
  .week-tag{ padding:12px 0; }
  .week-body{ padding:16px 20px; }
}

/* ============================================================
   TWO-COLUMN "WHERE THEY COME FROM"
   ============================================================ */
.pair-grid{ display:grid; grid-template-columns:1fr 1fr; gap:28px; }
.pair-card{
  background:var(--white); border:1px solid var(--border-light);
  border-radius:var(--radius-lg); padding:32px 30px;
  box-shadow:var(--shadow-card);
  display:flex; flex-direction:column;
  transition:transform .3s ease, box-shadow .3s ease;
}
.pair-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-hover); }
.pair-card h3{ font-size:1.2rem; font-weight:800; margin-bottom:6px; }
.pair-card .pair-sub{ color:var(--text-muted); font-size:.9rem; margin-bottom:20px; }
.pair-list{ display:grid; gap:12px; margin-bottom:20px; flex:1; }
.pair-list li{
  display:flex; gap:10px; align-items:flex-start;
  font-size:.92rem; color:var(--text-dark);
}
.pair-list .tick{
  width:22px; height:22px; border-radius:50%; flex-shrink:0; margin-top:1px;
  background:var(--primary-light); color:var(--primary-dark);
  display:grid; place-items:center;
}
.pair-list .tick svg{ width:12px; height:12px; }

.do-this{
  background:var(--text-dark); color:var(--white);
  border-radius:14px; padding:16px 18px; font-size:.88rem;
  display:flex; gap:10px; align-items:flex-start;
}
.do-this strong{ color:var(--primary); font-family:var(--font-display); flex-shrink:0; white-space:nowrap; }

@media (max-width:880px){ .pair-grid{ grid-template-columns:1fr; } }

/* ============================================================
   CONVERSATION STEPS
   ============================================================ */
.steps-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.step-card{
  background:var(--white); border:1px solid var(--border-light);
  border-radius:var(--radius-lg); padding:28px 22px;
  box-shadow:var(--shadow-card); text-align:left;
  transition:transform .3s ease, box-shadow .3s ease;
}
.step-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-hover); }
.step-num{
  width:38px; height:38px; border-radius:12px; margin-bottom:16px;
  background:var(--primary-light); color:var(--primary-dark);
  display:grid; place-items:center;
  font-family:var(--font-display); font-weight:800; font-size:1.05rem;
}
.step-card h3{ font-size:1rem; font-weight:800; margin-bottom:8px; }
.step-card p{ color:var(--text-muted); font-size:.9rem; }
@media (max-width:980px){ .steps-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .steps-grid{ grid-template-columns:1fr; } }

/* ============================================================
   PITFALLS (What Costs People the Bonus)
   ============================================================ */
.pitfall-card{
  background:var(--white); border:1px solid var(--border-light);
  border-radius:var(--radius-lg); box-shadow:var(--shadow-card);
  padding:36px 38px;
}
.pitfall-list{ display:grid; gap:18px; margin-bottom:26px; }
.pitfall-list li{
  display:flex; gap:14px; align-items:flex-start;
  padding-bottom:18px; border-bottom:1px solid var(--border-light);
  font-size:.95rem; color:var(--text-muted);
}
.pitfall-list li:last-child{ border-bottom:none; padding-bottom:0; }
.pitfall-list .flag{
  width:28px; height:28px; border-radius:50%; flex-shrink:0;
  background:var(--primary-light); color:var(--primary-dark);
  display:grid; place-items:center;
  font-family:var(--font-display); font-weight:800; font-size:.8rem;
}
.pitfall-list strong{ color:var(--text-dark); }
@media (max-width:640px){ .pitfall-card{ padding:26px 22px; } }

/* ============================================================
   COMMITMENT FORM (Before You Leave This Room)
   ============================================================ */
.commit-card{
  background:var(--white); border:1px solid var(--border-light);
  border-radius:26px; box-shadow:var(--shadow-card);
  padding:44px 46px;
}
.commit-card > p.step-sub{ color:var(--text-muted); font-size:.95rem; margin-bottom:30px; }

.commit-identity{ display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-bottom:26px; }
.field label{
  display:block; font-family:var(--font-display); font-weight:700;
  font-size:.82rem; margin-bottom:6px; color:var(--text-dark);
}
.field input{
  width:100%; padding:13px 18px;
  border:1.5px solid var(--border-light); border-radius:var(--radius-pill);
  font-family:var(--font-body); font-size:.92rem; color:var(--text-dark);
  background:var(--primary-soft);
  transition:border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field input::placeholder{ color:var(--text-muted); }
.field input:focus{
  outline:none; border-color:var(--primary);
  box-shadow:0 0 0 4px rgba(140,206,255,.25); background:var(--white);
}
@media (max-width:700px){ .commit-identity{ grid-template-columns:1fr; } }

.hp-field{ position:absolute; left:-9999px; top:-9999px; height:0; overflow:hidden; }

.commit-form{ display:grid; gap:20px; }
.commit-row{
  display:grid; grid-template-columns:1fr 1.1fr; gap:18px; align-items:center;
  padding-bottom:20px; border-bottom:1px solid var(--border-light);
}
.commit-row:last-of-type{ border-bottom:none; padding-bottom:0; }
.commit-label{
  display:flex; align-items:flex-start; gap:12px;
  font-family:var(--font-display); font-weight:700; font-size:.95rem; color:var(--text-dark);
}
.commit-label input[type="checkbox"]{
  margin-top:3px; width:19px; height:19px; accent-color:var(--primary-dark); flex-shrink:0;
}

.commit-row-multi{ grid-template-columns:1fr; gap:14px; padding-bottom:28px; }
.commit-multi-inputs{ display:grid; grid-template-columns:repeat(2, 1fr); gap:24px; }
@media (min-width:640px){ .commit-multi-inputs{ grid-template-columns:repeat(4, 1fr); } }

.commit-row input[type="text"], .commit-row input[type="date"]{
  width:100%; padding:13px 18px;
  border:1.5px solid var(--border-light); border-radius:var(--radius-pill);
  font-family:var(--font-body); font-size:.92rem; color:var(--text-dark);
  background:var(--primary-soft);
  transition:border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.commit-row input::placeholder{ color:var(--text-muted); }
.commit-row input:focus{
  outline:none; border-color:var(--primary);
  box-shadow:0 0 0 4px rgba(140,206,255,.25);
  background:var(--white);
}
.commit-captcha{ display:flex; justify-content:center; width:100%; min-height:65px; margin-top:26px; }
.commit-actions{ display:flex; justify-content:center; gap:14px; margin-top:22px; flex-wrap:wrap; }
.btn:disabled{ opacity:.6; cursor:not-allowed; transform:none !important; box-shadow:none !important; }

.form-error{
  color:#d9534f; font-size:.88rem; margin-top:18px; text-align:center;
  display:none;
}
.form-error.show{ display:block; }

.commit-success{
  max-width:520px; margin:28px auto 0; text-align:center;
  background:var(--white); border:1px solid var(--border-light);
  border-radius:var(--radius-lg); box-shadow:var(--shadow-card);
  padding:36px 30px;
}
.commit-success .cs-icon{
  width:56px; height:56px; border-radius:50%; margin:0 auto 16px;
  background:var(--primary-light); color:var(--primary-dark);
  display:grid; place-items:center;
}
.commit-success .cs-icon svg{ width:26px; height:26px; }
.commit-success h3{ font-size:1.15rem; font-weight:800; margin-bottom:8px; }
.commit-success p{ color:var(--text-muted); font-size:.92rem; }

@media (max-width:700px){
  .commit-card{ padding:30px 24px; }
  .commit-row{ grid-template-columns:1fr; gap:10px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer{ background:var(--primary-soft); padding:48px 0; border-top:1px solid var(--border-light); }
.footer-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:20px; flex-wrap:wrap;
}
.footer .logo-img{ height:34px; }
.footer-logos{ display:flex; align-items:center; gap:24px; flex-wrap:nowrap; }
.footer-logos .logo-img{ flex-shrink:1; min-width:0; }
@media (max-width:480px){
  .footer-logos{ gap:14px; }
  .footer .logo-img{ height:26px; }
}
.footer-copy{ font-size:.85rem; color:var(--text-muted); }

@media print{
  .header, .footer, .hero-chip, .commit-actions{ display:none !important; }
  .section{ padding:24px 0; }
  body{ background:#fff; }
}
