* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Satoshi', sans-serif;
  color: #fff;
  background: #16171a;
  overflow-x: hidden;
}

.bg-fixed {
  background: url('https://res.cloudinary.com/mission-origami/image/upload/v1774968498/Background_asset_dmn2rj.png') no-repeat center center fixed #0b0f14;
  background-size: 1140px 2160px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

h1, h2, h3 {
  font-weight: 900;
  color: #00AEEF;
}

p {
  font-weight: 300;
  color: #ffffff;
  opacity: 0.85;
  line-height: 1.6;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 14px 40px;
  background: rgba(22, 23, 26, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.navbar-logo {
  height: 28px;
  width: auto;
  margin-right: auto;
}

.navbar .login-btn {
  padding: 9px 22px;
  background: #00AEEF;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
}

.navbar .login-btn:hover {
  opacity: 0.85;
}

/* HERO */
.hero {
  padding: 80px 0;
  padding-top: 120px;
  position: relative;
}

.logo {
  width: 160px;
  margin-bottom: 20px;
}

.hero-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text {
  max-width: 500px;
}

.hero-text h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.devices {
  position: relative;
  width: 364px;
  max-width: 100%;
}

.ipad {
  width: 100%;
  display: block;
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.8s ease-out;
}

.iphone {
  position: absolute;
  left: -16.5%;
  bottom: -40px;
  width: 60%;
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.8s ease-out 0.2s;
}

.devices.animate-in .ipad {
  opacity: 1;
  transform: translateX(0);
}

.devices.animate-in .iphone {
  opacity: 1;
  transform: translateX(0);
}

/* DIAGRAM */
.diagram {
  margin: 80px 0;
}

.diagram-inner {
  text-align: center;
}

.diagram-wrapper {
  position: relative;
  display: block;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.diagram img:not(.globe-overlay) {
  display: block;
  width: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

.diagram.animate-in img {
  opacity: 1;
}

.globe-overlay {
  position: absolute;
  top: 50%;
  left: 88%;
  transform: translate(-50%, -50%);
  width: 17%;
  opacity: 0.8;
  pointer-events: none;
}

/* FEATURES */
.features {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin: 80px auto;
}

.feature {
  flex: 1;
  text-align: center;
}

/* TPN */
.tpn {
  background: #0aa0d8;
  text-align: center;
  padding: 22px 12px;
}

.tpn img {
  width: 204px;
  margin-bottom: 1px;
}

.tpn p {
  color: #fff;
  font-weight: 500;
}

/* CONTACT */
.contact {
  text-align: center;
  padding: 90px 0;
}

.contact h2 {
  margin-bottom: 30px;
}

.contact-box {
  background: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 12px;
  max-width: 400px;
  margin: auto;
}

.contact input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  background: #111;
  border: none;
  border-radius: 6px;
  color: #fff;
}

.contact button {
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  background: #00AEEF;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s;
}

.contact button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.contact button:not(:disabled):hover {
  opacity: 0.9;
}

.privacy-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  text-align: left;
  cursor: pointer;
  line-height: 1.4;
}

.privacy-label input[type="checkbox"] {
  width: auto;
  margin: 2px 0 0;
  flex-shrink: 0;
  accent-color: #00AEEF;
  cursor: pointer;
}

.privacy-label a {
  color: #00AEEF;
  text-decoration: underline;
}

.socials {
  margin-top: 30px;
}

.socials img {
  width: 28px;
  margin: 0 10px;
  cursor: pointer;
}

.powered {
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid {
    flex-direction: column;
    text-align: center;
  }

  .features {
    flex-direction: column;
  }
}
