*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #000;
  color: #f5f5f5;
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: calc(100vh - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  height: 60px;
}

.footer a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s;
}

.footer a:hover {
  color: rgba(255, 255, 255, 0.6);
}

.footer-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  width: 100%;
  max-width: 1000px;
}

@media (min-width: 768px) {
  .layout {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
  }
}

.copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 420px;
}

@media (min-width: 768px) {
  .copy {
    flex: 1;
    align-items: flex-start;
    text-align: left;
    max-width: 440px;
  }
}

.icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  margin-bottom: 2rem;
  object-fit: cover;
}

.title {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 0 0 1rem;
  color: #fff;
}

.subtitle {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 2.25rem;
}

.phone-wrap {
  flex-shrink: 0;
}

.phone {
  width: 280px;
  padding: 6px;
  border-radius: 52px;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
  position: relative;
}

.phone-home {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  z-index: 1;
}

.video-wrap {
  width: 100%;
  border-radius: 44px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 1290 / 2796;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.cta {
  display: inline-block;
  line-height: 0;
  text-decoration: none;
  transition: opacity 0.2s;
}

.cta:hover {
  opacity: 0.85;
}

.cta:active {
  opacity: 0.7;
}

.cta-icon {
  display: block;
  height: 54px;
  width: auto;
}

@media (max-width: 767px) {
  .phone {
    width: 240px;
  }

  .cta-icon {
    height: 48px;
  }
}
