:root{
  --bg: #000b4d;

  --t95: rgba(255,255,255,.95);
  --t90: rgba(255,255,255,.90);
  --t75: rgba(255,255,255,.75);

  --line: rgba(255,255,255,.25);

  --pill-bg: rgba(255,255,255,.18);
  --pill-border: rgba(255,255,255,.18);

  --cta: #6b4bff;
}

*{
  box-sizing: border-box;
}

html, body{
  height: 100%;
}

body{
  margin: 0;
  background: var(--bg);
  color: #fff;
  font-family: "Arimo", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

}

/* Background gears */
.bg-gear{
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

/* Πάνω δεξιά */
.bg-gear-tr{
  top: 0;
  right: 0;
  transform: translate(40%, -40%); /* 👈 “βγαίνει” εκτός κάδρου */
  width: min(520px, 60vw);
}

/* Κάτω αριστερά */
.bg-gear-bl{
  bottom: 0;
  left: 0;
  transform: translate(-40%, 40%);
  width: min(560px, 65vw);
}

/* Layout */
.page{
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px 20px;
  position: relative;
}



.wrap{
  width: min(980px, 92vw);
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Brand */
.top-mark{
  width: 90px;
  margin: 0 auto 16px;
  display: block;
}
.brand-name{
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 35px);
  margin-bottom: 50px;
  color: var(--t95);
}

/* Title & text */
h1{
  margin: 0 0 14px;
  font-size: clamp(34px, 4.6vw, 43px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--t95);
  margin-bottom: 43px;
}

.desc{
  max-width: 780px;
  margin: 0 auto;
  font-size: clamp(14px, 1.5vw, 17px);
  line-height: 1.65;
  color: var(--t95);
  margin-bottom: 64px;
}

.divider{
  width: min(457px, 70vw);
  height: 1px;
  background: var(--line);
  margin: 22px auto 16px;
  margin-bottom: 56px;
}

.newsletter{
  font-size: clamp(15px, 1.35vw, 10px);
  color: var(--t90);
  margin-bottom: 24px;
}

.form{
  width: 370px;
  height: 45px;

  display: flex;
  align-items: center;        /* 👈 κάθετη στοίχιση στο κέντρο */
  gap: 8px;
  margin: 0 auto;

  padding: 4px;
  border-radius: 999px;

  background: var(--pill-bg);
  border: 1px solid var(--pill-border);
}




/* input */
.form input{
  flex: 1;
  height: 100%;

  border: 0;
  outline: 0;
  color: #ffffff;
  caret-color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  background: transparent;

  font-size: 15px;
  padding: 0 12px;
}

.form input::placeholder{
  color: rgba(255,255,255,0.6);
}




/* button */
.form button{
  height: 100%;               /* 👈 ίδιο ύψος με τη μπάρα */
  padding: 0 16px;

  border: 0;
  border-radius: 999px;

  background: var(--cta);
  color: #fff;

  font-size: 13px;
  font-weight: 700;

  display: flex;
  align-items: center;        /* 👈 κείμενο στο κέντρο */
  justify-content: center;
}


.fineprint{
  margin-top: 14px;
  font-size: 8px;
  color: rgba(255,255,255,.55);
}

/* Footer */
.footer{
  margin-top: -26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-mid{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  width: min(980px, 92vw);
}

.gw-watermark{
  height: 220px;
  opacity: .95;
}

.social{
  margin-top:-50px;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 14px;
}

.social a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;     /* σταθερό κουτί */
  height: 44px;
  padding: 0;
  line-height: 0;  /* κόβει whitespace */
}

.social img{
  display: block;  /* κόβει το “κάτω κενό” των img */
  width: 44px;
  height: 44px;
  object-fit: contain;
}


.partner img{
  margin-top:-50px;
  height: 216px;
}

/* Contact */
.contact{
  width: min(980px, 92vw);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--t90);
}

@media (max-width: 560px){
  .form{
    width: min(370px, 92vw);
    flex-direction: row;      /* 👈 ΜΗΝ το κάνεις column */
    height: 45px;             /* 👈 κράτα ίδια μπάρα */
    border-radius: 999px;
    padding: 4px;
    gap: 8px;
  }

  .form input{
    font-size: 14px;
    padding: 0 12px;
  }

  .form button{
    height: 100%;
    min-width: 110px;
    padding: 0 14px;
    font-size: 12px;
  }

  h1{
    font-size: clamp(34px, 9vw, 44px); /* 👈 καλύτερο resize */
  }

  .desc{
    font-size: 14px;
    line-height: 1.6;
    max-width: 92vw;
  }

  .brand-name{
    font-size: clamp(22px, 6vw, 30px);
  }
}

.newsletter-msg{
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255,255,255,.9);
}


.bg-gear{
  pointer-events: none;
  z-index: 0;
}

.wrap{
  position: relative;
  z-index: 5;
}

.footer, .footer-row, .social{
  position: relative;
  z-index: 6;
}

.social a{
  pointer-events: auto;
  cursor: pointer;
}

