:root {
  color-scheme: light;
  --ink: #fff8f6;
  --muted: #cfb8b5;
  --accent: #f05f59;
  --accent-bright: #ff8780;
  --footer: rgba(18, 9, 10, 0.94);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: #180d10;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 112px);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(
      ellipse at 78% 48%,
      rgba(240, 95, 89, 0.24),
      transparent 56%
    ),
    radial-gradient(
      ellipse at 55% 110%,
      rgba(240, 95, 89, 0.16),
      transparent 50%
    ),
    #180d10;
}

.brand {
  display: flex;
  width: 38%;
  flex-shrink: 0;
  min-height: calc(100vh - 112px);
  padding: 48px clamp(24px, 4vw, 76px);
  align-items: center;
  justify-content: center;
}

.brand-inner {
  width: 100%;
  max-width: 520px;
}

.mark {
  display: block;
  width: 92px;
  height: 92px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  object-fit: cover;
  box-shadow:
    0 18px 52px rgba(240, 95, 89, 0.25),
    0 0 0 7px rgba(255, 255, 255, 0.025);
}

.eyebrow {
  margin: 0 0 14px;
  color: #ffaaa3;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(46px, 5.2vw, 86px);
  font-weight: 820;
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.dash {
  color: var(--accent-bright);
}

.tagline {
  max-width: 430px;
  margin: 26px 0 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 2vw, 30px);
  font-style: italic;
  line-height: 1.35;
}

.tagline::after {
  display: block;
  width: 74px;
  height: 5px;
  margin-top: 18px;
  border-radius: 999px;
  content: "";
  background: linear-gradient(90deg, var(--accent), #ffaaa3);
}

footer {
  position: relative;
  z-index: 2;
  min-height: 112px;
  padding: 22px 32px 18px;
  color: #fff;
  background: var(--footer);
  backdrop-filter: blur(14px);
}

.footer-links {
  display: flex;
  max-width: 1120px;
  margin: 0 auto 18px;
  align-items: center;
  justify-content: center;
  gap: 15px 42px;
  flex-wrap: wrap;
}

.footer-links a {
  padding: 4px 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent-bright);
}

.copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  text-align: center;
}

.screenshots {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: clamp(10px, 1.2vw, 24px);
  width: 62%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 96px clamp(24px, 3vw, 64px) 96px 8px;
}

.phone {
  margin: 0;
  padding: 5px;
  overflow: hidden;
  border: 1px solid #72514e;
  border-radius: clamp(16px, 2vw, 32px);
  background: #21191a;
  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.45);
}

.phone:nth-child(even) {
  transform: translateY(34px);
}

.phone img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: clamp(11px, 1.6vw, 26px);
}

@media (max-width: 1000px) {
  .hero {
    flex-direction: column;
  }

  .brand {
    width: 100%;
    min-height: 0;
    padding: 56px 28px 24px;
    text-align: center;
  }

  .brand-inner {
    margin: 0 auto;
  }

  .mark {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    border-radius: 20px;
  }

  h1 {
    font-size: clamp(50px, 10vw, 76px);
  }

  .tagline {
    margin-right: auto;
    margin-left: auto;
  }

  .tagline::after {
    margin-right: auto;
    margin-left: auto;
  }

  .screenshots {
    width: 100%;
    max-width: 840px;
    padding: 24px 28px 80px;
    gap: 16px;
  }
}

@media (max-width: 560px) {
  .screenshots {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 440px;
    gap: 24px 16px;
    padding: 24px 24px 60px;
  }

  .phone {
    border-radius: 22px;
  }

  .phone img {
    border-radius: 16px;
  }

  .phone:nth-child(even) {
    transform: translateY(18px);
  }

  footer {
    padding-right: 22px;
    padding-left: 22px;
  }

  .footer-links {
    gap: 12px 24px;
  }
}
