:root {
  --bg: #0f1724;
  --card: #0b1220;
  --muted: #9aa4b2;
  --accent: #00d4ff; /* cyan */
  --accent-2: #ffb86b; /* orange */
  --glass: rgba(255, 255, 255, 0.04);
  --radius: 18px;
  --container: 1200px;
  --max-w: 1100px;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI",
    Roboto, "Helvetica Neue", Arial;
  background: linear-gradient(180deg, var(--bg), #071033);
  color: #e6eef6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.4;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 28px;
}

body.single {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI",
    Roboto, "Helvetica Neue", Arial;
  background: #071033 !important;
  color: #e6eef6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.4;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 28px;
}

/* header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.brand {
  display: flex;
  gap: 14px;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.logo {
  width: 100px;
  height: auto;
}

.brand h1 {
  font-size: 18px;
  margin: 0;
  letter-spacing: 0.6px;
}
.nav {
  display: flex;
  gap: 12px;
  align-items: center;
}
.cta-link {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  padding: 10px 14px;
  border-radius: 12px;
  color: #071033;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.12);
  transition: transform 0.18s ease;
}
.cta-link:hover {
  transform: translateY(-3px);
}

/* hero */
.hero {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 56px 0;
}
.hero-left {
  flex: 1;
  max-width: 640px;
}
.kicker {
  display: inline-block;
  padding: 6px 10px;
  background: linear-gradient(
    90deg,
    rgba(0, 212, 255, 0.12),
    rgba(255, 184, 107, 0.06)
  );
  color: #ffcc00;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 18px;
}
.title {
  font-size: 44px;
  margin: 0 0 14px;
  line-height: 1.02;
  background: linear-gradient(90deg, #fff, #d6f9ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead {
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 20px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}
.play-badge {
  height: 56px;
}
.secondary {
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
  text-decoration: none;
}

/* hero right - preview */
.preview {
  flex: 0 0 420px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone {
  width: 260px;
  height: auto;
  border-radius: 34px;
  background: linear-gradient(180deg, #ffcc00, #ffcc00);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.screen {
  width: 224px;
  height: auto;
  border-radius: none;
  overflow: hidden;
  background: linear-gradient(180deg, #ffcc00, #ffcc00);
}

/* features */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}
.card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.01)
  );
  padding: 22px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}
.card h3 {
  margin: 8px 0 6px;
}
.card p {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
}

/* how to and screenshots */
.section {
  border-top: 1px solid #ffcc00;
}
.hrow {
  display: flex;
  gap: 20px;
}
.hcol {
  flex: 1;
  overflow: hidden;
}
.hcol::-webkit-scrollbar {
  display: none;
}
.screens {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  justify-content: center;
  align-items: center;
}
.ss {
  width: 160px;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

/* CTA strip */
.cta-strip {
  margin: 40px 0;
  padding: 24px;

  background: linear-gradient(
    90deg,
    rgba(0, 212, 255, 0.06),
    rgba(255, 184, 107, 0.03)
  );

  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cta-strip p {
  margin: 0;
}
.download-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* footer */
.footer {
  color: grey;
  display: flex;
  height: 5vh;
  justify-content: center;
  align-items: center;
}

/* Back to Site button styling */
.back-to-site {
  background-color: #34495e;
  color: white;
  border: 2px solid #34495e;
  padding: 12px 24px;
  font-size: 16px;
  font-family: Arial, sans-serif;
  font-weight: normal;
  cursor: pointer;
  border-radius: 25px;
  transition: all 0.3s ease;
  margin: 30px auto 80px auto;
  /* Changed from "30px 10px" to "30px auto" */
  display: block; /* Changed from "inline-block" to "block" */
  text-decoration: none;
  position: relative;
  overflow: hidden;
  width: fit-content; /* Added this to prevent full width */
}

.back-to-site:hover {
  background-color: #1abc9c;
  border-color: #1abc9c;
  color: #ffffff;
  font-weight: bold;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
  letter-spacing: 1px;
}

/* Arrow icon effect */
.back-to-site::before {
  content: "← ";
  margin-right: 8px;
  transition: all 0.3s ease;
}

.back-to-site:hover::before {
  transform: translateX(-3px);
  color: #ffffff;
}

/* badges and micro */
.badge {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: white;
  color: crimson;
  font-weight: 700;
}

/* responsive */
@media (max-width: 980px) {
  .hero {
    flex-direction: column-reverse;
    padding: 32px 0;
  }
  .preview {
    margin-bottom: 16px;
  }
  .features {
    grid-template-columns: 1fr;
  }
  .nav {
    display: flex;
  }
  .header {
    padding: 10px 0;
  }
  .container {
    padding: 18px;
  }
  .phone {
    width: 220px;
    height: 460px;
  }
}
