* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #090909;
  color: #f2f2f2;

  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  line-height: 1.7;
  overflow-x: hidden;
}

/* HERO */

.hero {
  position: relative;

  min-height: 100vh;

  padding: 32px 8%;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.noise {
  position: absolute;
  inset: 0;

  opacity: 0.03;

  background-image:
    radial-gradient(#ffffff 0.5px, transparent 0.5px);

  background-size: 12px 12px;

  pointer-events: none;
}

/* NAV */

.nav {
  position: absolute;

  top: 28px;
  left: 8%;
  right: 8%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  z-index: 10;
}

.logo {
  font-size: 18px;
  font-weight: 700;

  letter-spacing: 0.08em;
}

.nav ul {
  display: flex;
  gap: 24px;

  list-style: none;
}

.nav a {
  color: #bdbdbd;

  text-decoration: none;

  transition: 0.2s;
}

.nav a:hover {
  color: white;
}

/* HERO CONTENT */

.hero-content {
  max-width: 720px;

  position: relative;
  z-index: 2;
}

.small {
  color: #7c7c7c;

  text-transform: uppercase;
  letter-spacing: 0.2em;

  margin-bottom: 18px;

  font-size: 12px;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);

  line-height: 1.05;

  margin-bottom: 28px;

  letter-spacing: -0.04em;
}

.description {
  color: #9f9f9f;

  max-width: 560px;

  margin-bottom: 36px;

  font-size: 18px;
}

.button {
  display: inline-block;

  padding: 14px 24px;

  border-radius: 999px;

  background: white;
  color: black;

  text-decoration: none;
  font-weight: 600;

  transition: 0.25s;
}

.button:hover {
  transform: translateY(-2px);
}

/* GLOW */

.glow {
  position: absolute;

  border-radius: 999px;

  filter: blur(120px);
}

.glow-1 {
  width: 300px;
  height: 300px;

  background: rgba(100, 100, 255, 0.18);

  top: 10%;
  right: 10%;
}

.glow-2 {
  width: 220px;
  height: 220px;

  background: rgba(255, 100, 180, 0.12);

  bottom: 10%;
  left: 5%;
}

/* SECTION */

.section {
  padding: 120px 8%;
}

.section-title {
  margin-bottom: 40px;
}

.section-title span {
  color: #707070;

  font-size: 12px;

  letter-spacing: 0.2em;
}

.section-title h2 {
  font-size: 42px;

  margin-top: 10px;
}

/* CARD */

.card {
  max-width: 720px;

  background: rgba(255,255,255,0.03);

  border: 1px solid rgba(255,255,255,0.06);

  padding: 36px;

  border-radius: 28px;

  backdrop-filter: blur(20px);
}

.card p + p {
  margin-top: 20px;
}

/* INFO CARD */

.info-card {
  margin-top: 28px;

  background: rgba(255,255,255,0.03);

  border: 1px solid rgba(255,255,255,0.06);

  border-radius: 28px;

  padding: 32px;

  backdrop-filter: blur(20px);
}

.info-row {
  display: grid;

  grid-template-columns: 180px 1fr;

  gap: 20px;

  padding: 18px 0;

  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.info-row:last-child {
  border-bottom: none;
}

.label {
  color: #7d7d7d;

  font-size: 14px;

  letter-spacing: 0.04em;
}

.value {
  color: #f2f2f2;

  line-height: 1.8;
}

.value a {
  color: white;

  text-decoration: none;
}

.value a:hover {
  opacity: 0.7;
}

/* APP CARD */

.app-card {
  display: grid;

  grid-template-columns: 1fr 320px;

  gap: 48px;

  align-items: center;

  background: rgba(255,255,255,0.03);

  border: 1px solid rgba(255,255,255,0.06);

  padding: 42px;

  border-radius: 32px;
}

.app-info h3 {
  font-size: 36px;

  margin-bottom: 10px;
}

.status {
  color: #8a8aff;

  margin-bottom: 20px;
}

.tags {
  display: flex;
  flex-wrap: wrap;

  gap: 12px;

  margin-top: 28px;
}

.tags span {
  background: rgba(255,255,255,0.06);

  padding: 8px 14px;

  border-radius: 999px;

  font-size: 14px;

  color: #cfcfcf;
}

/* MOCKUP */

.mockup {
  width: 320px;
  height: 640px;

  margin: auto;

  position: relative;

  overflow: hidden;

  background: transparent;
}

.mockup-screen {
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-image {
  width: 100%;
  height: 100%;

  object-fit: contain;

  display: block;
}

/* CONTACT */

.contact-card {
  max-width: 760px;

  background: rgba(255,255,255,0.03);

  border: 1px solid rgba(255,255,255,0.06);

  border-radius: 28px;

  padding: 40px;

  backdrop-filter: blur(20px);
}

.contact-text {
  color: #b5b5b5;

  margin-bottom: 32px;

  line-height: 1.8;
}

.contact-form {
  display: flex;
  flex-direction: column;

  gap: 18px;
}

.contact-form input,
.contact-form textarea {

  width: 100%;

  background: rgba(255,255,255,0.04);

  border: 1px solid rgba(255,255,255,0.08);

  border-radius: 18px;

  padding: 16px 18px;

  color: white;

  font-size: 15px;

  outline: none;

  transition: 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {

  border-color: rgba(255,255,255,0.2);

  background: rgba(255,255,255,0.06);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {

  width: fit-content;

  padding: 14px 24px;

  border: none;

  border-radius: 999px;

  background: white;
  color: black;

  font-weight: 600;
  font-size: 15px;

  cursor: pointer;

  transition: 0.2s;
}

.contact-form button:hover {
  transform: translateY(-2px);
}

/* SOCIAL */

.social-links {
  margin-top: 36px;
}

.social-icon {

  display: inline-flex;

  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;

  border-radius: 999px;

  background: rgba(255,255,255,0.05);

  border: 1px solid rgba(255,255,255,0.06);

  color: white;

  transition: 0.2s;
}

.social-icon:hover {

  transform: translateY(-2px);

  background: rgba(255,255,255,0.08);
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

/* FOOTER */

.footer {
  padding: 40px 8%;

  border-top: 1px solid rgba(255,255,255,0.06);

  display: flex;
  justify-content: space-between;
  align-items: center;

  color: #7d7d7d;
}

.footer-links {
  display: flex;

  gap: 20px;
}

.footer a {
  color: #7d7d7d;

  text-decoration: none;
}

/* RESPONSIVE */

@media (max-width: 900px) {

  .nav {
    flex-direction: column;

    gap: 20px;
  }

  .hero {
    padding-top: 140px;
  }

  .app-card {
    grid-template-columns: 1fr;

    padding: 32px;
  }

  .section-title h2 {
    font-size: 32px;
  }

  .hero h1 {
    font-size: 56px;
  }

  .footer {
    flex-direction: column;

    gap: 20px;
  }

}

@media (max-width: 700px) {

  .info-row {
    grid-template-columns: 1fr;

    gap: 8px;
  }

  .contact-card {
    padding: 28px;
  }

  .mockup {
    width: 100%;
    height: auto;
  }

}

/* NAV RIGHT */

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* HEADER SOCIAL */

.nav-social-icon {

  display: inline-flex;

  align-items: center;
  justify-content: center;

  width: 40px;
  height: 40px;

  border-radius: 999px;

  background: rgba(255,255,255,0.05);

  border: 1px solid rgba(255,255,255,0.06);

  color: white;

  transition: 0.2s;
}

.nav-social-icon:hover {

  transform: translateY(-2px);

  background: rgba(255,255,255,0.08);
}

.nav-social-icon svg {
  width: 16px;
  height: 16px;
}