* {
  box-sizing: border-box;
}

body {
  font-family: Inter, system-ui, sans-serif;
  margin: 0;
  color: #111;
  background: #fafafa;
}

/* SVG checkerboard background in the center */
.background-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 200 200"%3E%3Cpath fill="%23eaeaea" d="M0 0h100v100H0zm100 0h100v100H100zm0 100h100v100H100z"/%3E%3C/svg%3E');
  background-size: 50px 50px;
  background-position: center center;
  background-repeat: repeat;
  opacity: 0.12;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent 70%);
}

/* Header */
.header {
  display: flex;
  align-items: center;
  padding: 28px 60px;
  background: transparent;
  z-index: 1;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  text-decoration: none;
  color: inherit;
}

.logo img {
  width: 36px;
  height: 36px;
}

/* Hero section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 60px;
  gap: 60px;
}

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

.hero-text h1 {
  font-size: 44px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 18px;
  color: #555;
  margin-bottom: 28px;
}

.cta {
  display: inline-block;
  padding: 12px 20px;
  background: #111;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
}

/* Clipped hero image */
.hero-image {
  width: 520px;
  height: 360px;
  overflow: hidden;
  border-radius: 16px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Apps section */
.apps {
  max-width: 900px;
  margin: auto;
  padding: 60px;
}

.apps h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

/* App card with main screenshot */
.app-card {
  display: flex;
  gap: 18px;
  padding: 18px;
  margin-bottom: 18px;
  background: white;
  border: 1px solid #eee;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  align-items: center;
}

.app-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.app-image img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
}

.app-info {
  display: flex;
  flex-direction: column;
}

.app-info h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.app-info p {
  font-size: 16px;
  color: #555;
}

/* Mobile styles */
@media (max-width: 600px) {
  .hero {
    flex-direction: column;
    padding: 40px 24px;
  }

  .hero-image {
    width: 100%;
    height: auto;
  }

  .hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }

  .apps {
    padding: 20px;
  }

  .app-page .hero-image img {
    height: auto;
    object-fit: unset;
  }

  .app-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .app-image {
    width: 100%;
  }

  .app-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
}

/* Footer */
footer {
  padding: 40px;
  text-align: center;
  color: #777;
}

/* Privacy Policy page */
.policy {
  max-width: 780px;
  margin: auto;
  padding: 40px 60px 80px;
}

.policy h1 {
  font-size: 36px;
  margin-bottom: 8px;
}

.policy .last-updated {
  color: #777;
  font-size: 14px;
  margin-bottom: 40px;
}

.policy h2 {
  font-size: 20px;
  margin-top: 40px;
  margin-bottom: 12px;
}

.policy h3 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 8px;
}

.policy p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 12px;
}

.policy ul {
  color: #555;
  line-height: 1.7;
  padding-left: 24px;
  margin-bottom: 12px;
}

.policy a {
  color: #111;
}

@media (max-width: 600px) {
  .policy {
    padding: 20px 20px 60px;
  }
}