@font-face {
  font-family: 'Geogrotesque';
  src: url('/fonts/Geogrotesque Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geogrotesque';
  src: url('/fonts/Geogrotesque SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geogrotesque';
  src: url('/fonts/Geogrotesque Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root{
  --white:#fff;
  --ink:#071b49;
  --muted:rgba(255,255,255,.72);
  --panel:rgba(1,30,84,.22);
  --line:rgba(255,255,255,.32);
}

*{
  box-sizing:border-box;
}

html,
body{
  margin:0;
  min-height:100%;
  font-family:'Geogrotesque', Arial, Helvetica, sans-serif;
  background:#079ed1;
  color:white;
}

body{
  min-height:100vh;
  background-image:
    linear-gradient(90deg,rgba(0,0,0,0),rgba(0,0,0,.05)),
    url('/assets/gradient.png');
  background-size:cover;
  background-position:center;
  background-attachment:fixed;
}

button,
textarea,
input{
  font:inherit;
}

button{
  cursor:pointer;
}

.app-shell{
  width:min(1100px,calc(100% - 40px));
  min-height:100vh;
  margin:0 auto;
  display:flex;
  flex-direction:column;
}

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:34px 0 10px;
}

.logo{
  width:min(315px,62vw);
  height:auto;
  object-fit:contain;
  display:block;
  margin-left:-14px;
}

.hero{
  max-width:850px;
  margin:auto 0;
  padding:55px 0 90px;
}

.eyebrow{
  font-size:14px;
  letter-spacing:.12em;
  font-weight:600;
  margin-bottom:24px;
  opacity:.8;
}

h1{
  font-size:clamp(54px,8vw,104px);
  line-height:.9;
  letter-spacing:-.035em;
  margin:0 0 28px;
  font-weight:700;
}

.lead{
  font-size:clamp(18px,2.2vw,25px);
  max-width:700px;
  line-height:1.35;
  margin:0 0 34px;
  color:var(--muted);
  font-weight:400;
}

.goal-form{
  display:flex;
  gap:12px;
  align-items:stretch;
  max-width:850px;
}

textarea{
  flex:1;
  resize:none;
  min-height:78px;
  border:1px solid rgba(255,255,255,.62);
  border-radius:20px;
  background:rgba(0,34,91,.18);
  color:#fff;
  padding:20px 22px;
  outline:none;
  font-size:19px;
  line-height:1.35;
  font-weight:400;
  backdrop-filter:blur(8px);
}

textarea::placeholder{
  color:rgba(255,255,255,.62);
}

textarea:focus{
  border-color:white;
  background:rgba(0,34,91,.28);
}

.primary,
.ghost,
.choice,
.check-btn{
  border:none;
  border-radius:999px;
  padding:0 24px;
  font-weight:600;
}

.primary{
  background:white;
  color:#063978;
  min-width:175px;
}

.primary:hover{
  transform:translateY(-1px);
}

.ghost{
  border:1px solid rgba(255,255,255,.5);
  background:transparent;
  color:white;
  height:44px;
}

.examples{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:16px;
}

.example{
  border:1px solid rgba(255,255,255,.27);
  border-radius:999px;
  background:rgba(0,0,0,.06);
  color:rgba(255,255,255,.78);
  padding:8px 12px;
  font-size:13px;
  font-weight:400;
}

.workspace{
  padding:55px 0 90px;
  max-width:900px;
}

.progress-wrap{
  margin-bottom:26px;
}

.progress-meta{
  display:flex;
  justify-content:space-between;
  align-items:end;
  margin-bottom:10px;
  font-size:13px;
  letter-spacing:.06em;
  font-weight:600;
}

.progress-meta strong{
  font-size:28px;
  letter-spacing:-.02em;
  font-weight:700;
}

.progress-track{
  height:50px;
  border:2px solid white;
  border-radius:999px;
  position:relative;
  overflow:hidden;
  background:rgba(0,0,0,.08);
}

.progress-fill{
  height:100%;
  width:0%;
  background:rgba(255,255,255,.14);
  transition:width .6s ease;
}

.progress-knob{
  position:absolute;
  top:4px;
  left:4px;
  width:38px;
  height:38px;
  border-radius:50%;
  background:#fff;
  transition:left .6s ease;
  box-shadow:0 3px 18px rgba(0,0,0,.12);
}

.content-card{
  background:rgba(3,34,89,.26);
  border:1px solid rgba(255,255,255,.25);
  border-radius:28px;
  padding:clamp(24px,4vw,42px);
  backdrop-filter:blur(18px);
  box-shadow:0 18px 50px rgba(0,30,80,.12);
}

.content-card h2{
  font-size:clamp(34px,5vw,55px);
  letter-spacing:-.025em;
  line-height:1;
  margin:0 0 14px;
  font-weight:700;
}

.content-card h3{
  margin:28px 0 10px;
  font-size:13px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:rgba(255,255,255,.68);
  font-weight:600;
}

.content-card p{
  font-size:18px;
  line-height:1.5;
  margin:8px 0;
  color:rgba(255,255,255,.9);
  font-weight:400;
}

.questions{
  display:grid;
  gap:18px;
  margin-top:28px;
}

.question label{
  display:block;
  font-size:14px;
  margin-bottom:8px;
  color:rgba(255,255,255,.76);
  font-weight:400;
}

.question input{
  width:100%;
  background:rgba(0,0,0,.08);
  border:1px solid rgba(255,255,255,.4);
  color:white;
  border-radius:14px;
  padding:15px 16px;
  outline:none;
  font-weight:400;
}

.tempo{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:24px 0;
}

.choice{
  height:44px;
  background:transparent;
  color:#fff;
  border:1px solid rgba(255,255,255,.4);
}

.choice.active{
  background:#fff;
  color:#06417b;
}

.actions-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:24px;
}

.actions-row .primary{
  height:48px;
}

.milestones{
  display:grid;
  gap:12px;
  margin-top:18px;
}

.milestone{
  display:grid;
  grid-template-columns:40px 1fr auto;
  gap:14px;
  border-top:1px solid rgba(255,255,255,.18);
  padding:17px 0 6px;
  align-items:start;
}

.milestone-num{
  width:32px;
  height:32px;
  border:1px solid rgba(255,255,255,.55);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:600;
  font-size:13px;
}

.milestone h4{
  margin:3px 0 5px;
  font-size:20px;
  font-weight:600;
}

.milestone ul{
  margin:6px 0 0;
  padding-left:18px;
  color:rgba(255,255,255,.8);
  line-height:1.45;
}

.timing{
  font-size:13px;
  color:rgba(255,255,255,.6);
  white-space:nowrap;
  margin-top:7px;
}

.next-move{
  margin-top:28px;
  background:white;
  color:#073d78;
  border-radius:20px;
  padding:22px 24px;
}

.next-move .small{
  font-size:12px;
  letter-spacing:.1em;
  font-weight:600;
  opacity:.6;
}

.next-move strong{
  display:block;
  font-size:22px;
  line-height:1.25;
  margin-top:8px;
  font-weight:700;
}

.next-move p{
  color:rgba(7,61,120,.72);
  font-size:15px;
  margin-bottom:0;
}

.telekom{
  border-top:1px solid rgba(255,255,255,.2);
  margin-top:24px;
  padding-top:20px;
}

.telekom strong{
  font-size:14px;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-weight:600;
}

.telekom p{
  font-size:15px;
  color:rgba(255,255,255,.76);
}

.check-btn{
  height:48px;
}

.done{
  background:white;
  color:#073d78;
}

.notyet{
  background:transparent;
  color:white;
  border:1px solid rgba(255,255,255,.5);
}

footer{
  margin-top:auto;
  padding:0 0 28px;
}

.disclaimer{
  max-width:900px;
  font-size:11px;
  line-height:1.45;
  color:rgba(255,255,255,.55);
  font-weight:400;
}

.disclaimer strong{
  color:rgba(255,255,255,.75);
  font-weight:600;
}

.loading{
  display:flex;
  gap:8px;
  align-items:center;
}

.dot{
  width:8px;
  height:8px;
  background:white;
  border-radius:50%;
  animation:pulse 1s infinite ease-in-out;
}

.dot:nth-child(2){
  animation-delay:.12s;
}

.dot:nth-child(3){
  animation-delay:.24s;
}

@keyframes pulse{
  0%,100%{
    opacity:.3;
    transform:translateY(0);
  }
  50%{
    opacity:1;
    transform:translateY(-4px);
  }
}

.hidden{
  display:none!important;
}


/* PREMIK.AI V2 */

.v2-section{
  margin-top:28px;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.18);
}

.timeline-section h3{
  margin:0 0 14px;
}

.timeline-list{
  display:grid;
  gap:0;
}

.timeline-item{
  display:grid;
  grid-template-columns:16px 1fr;
  gap:10px;
  position:relative;
  padding:0 0 17px;
}

.timeline-item:before{
  content:"";
  position:absolute;
  left:4px;
  top:10px;
  bottom:-1px;
  width:1px;
  background:rgba(255,255,255,.18);
}

.timeline-item:last-child:before{
  display:none;
}

.timeline-mark{
  width:9px;
  height:9px;
  margin-top:4px;
  border-radius:50%;
  background:white;
  z-index:1;
}

.timeline-item b{
  font-size:14px;
}

.timeline-item p{
  font-size:13px!important;
  margin:3px 0!important;
  color:rgba(255,255,255,.65)!important;
}

.timeline-item small{
  font-size:10px;
  opacity:.4;
}

.evidence-box{
  margin-top:24px;
  padding:18px 20px;
  border:1px dashed rgba(255,255,255,.35);
  border-radius:18px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  background:rgba(0,0,0,.04);
}

.evidence-box strong{
  font-size:12px;
  letter-spacing:.1em;
}

.evidence-box p{
  font-size:13px;
  margin:5px 0 0;
  color:rgba(255,255,255,.63);
}

.upload-btn{
  white-space:nowrap;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.4);
  padding:11px 16px;
  font-size:13px;
  font-weight:600;
  cursor:pointer;
}

.upload-btn:hover{
  background:white;
  color:#073d78;
}

.done-when{
  font-size:11px;
  margin-top:9px;
  color:rgba(255,255,255,.5);
}

.verdict{
  display:inline-block;
  margin-bottom:16px;
  border:1px solid rgba(255,255,255,.35);
  padding:7px 11px;
  border-radius:999px;
  font-size:10px;
  font-weight:600;
  letter-spacing:.12em;
}

.review-impact{
  margin:20px 0;
  padding:16px 18px;
  border-left:2px solid white;
  background:rgba(255,255,255,.06);
}

.review-impact strong{
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.review-impact p{
  font-size:15px;
  margin-bottom:0;
}


@media(max-width:700px){

  .app-shell{
    width:min(100% - 24px,1100px);
  }

  .topbar{
    padding-top:20px;
  }

  .logo{
    width:245px;
    margin-left:-8px;
  }

  .hero{
    padding:55px 0;
  }

  .goal-form{
    flex-direction:column;
  }

  .primary{
    min-height:52px;
  }

  .milestone{
    grid-template-columns:34px 1fr;
  }

  .timing{
    grid-column:2;
  }

  .progress-track{
    height:44px;
  }

  .progress-knob{
    width:32px;
    height:32px;
  }

  .evidence-box{
    align-items:flex-start;
    flex-direction:column;
  }

  .upload-btn{
    width:100%;
    text-align:center;
  }

}
