@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Spectral:wght@400;600;700&display=swap");

:root {
  --bg: #0c0c11;
  --bg-2: #141420;
  --ink: #f5f3ff;
  --muted: #b7b2c8;
  --accent: #f1b6ff;
  --accent-2: #7af4ff;
  --card: rgba(16, 16, 26, 0.7);
  --stroke: rgba(255, 255, 255, 0.08);
  --glow: radial-gradient(650px 380px at 20% 5%, rgba(152, 99, 255, 0.3), transparent 60%),
          radial-gradient(720px 420px at 85% 15%, rgba(122, 244, 255, 0.25), transparent 55%),
          radial-gradient(600px 400px at 50% 80%, rgba(255, 206, 122, 0.2), transparent 60%);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  min-height: 100vh;
  line-height: 1.6;
}

.bg-glow {
  position: fixed;
  inset: 0;
  background: var(--glow);
  pointer-events: none;
  z-index: -1;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  padding: 80px 8vw 48px;
  align-items: center;
}

.hero-copy h1 {
  font-family: "Spectral", serif;
  font-size: clamp(2.3rem, 3vw + 1.6rem, 4rem);
  line-height: 1.1;
  margin: 0 0 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.75rem;
}

.lede {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 36rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.badge {
  border: 1px solid var(--stroke);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  background: rgba(12, 12, 18, 0.4);
}

.hero-media img {
  width: 100%;
  max-width: 680px;
  height: auto;
  display: block;
  margin-inline: auto;
  border-radius: 26px;
  border: 1px solid var(--stroke);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.section {
  padding: 48px 8vw;
}

.section-title {
  max-width: 44rem;
  margin-bottom: 24px;
}

.section-title h2,
.section h2 {
  font-family: "Spectral", serif;
  font-size: clamp(1.8rem, 2vw + 1rem, 2.6rem);
  margin: 0 0 8px;
}

.section-title p,
.section p {
  color: var(--muted);
  margin: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.card {
  background: var(--card);
  border: 1px solid var(--stroke);
  padding: 18px;
  border-radius: 18px;
  min-height: 170px;
  backdrop-filter: blur(12px);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.panel {
  background: var(--card);
  border-radius: 24px;
  border: 1px solid var(--stroke);
  padding: 16px;
}

.panel img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

.list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.list li {
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-2);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.gallery-groups {
  display: grid;
  gap: 24px;
}

.gallery-group h3 {
  margin: 0 0 12px;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.gallery figure {
  margin: 0;
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.gallery-ipad {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.gallery-ipad figure {
  aspect-ratio: 3 / 4;
}

.gallery-mac {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.gallery-mac figure {
  aspect-ratio: 16 / 10;
}

.gallery-iphone {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.gallery-iphone figure {
  aspect-ratio: 9 / 19.5;
}

.cta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: center;
  background: rgba(13, 13, 21, 0.85);
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}

.cta-box {
  background: linear-gradient(135deg, rgba(242, 182, 255, 0.2), rgba(122, 244, 255, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px;
  border-radius: 16px;
}

.feedback {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  align-items: center;
}

.feedback a {
  color: var(--accent-2);
  text-decoration: none;
  font-weight: 600;
}

.feedback a:hover {
  text-decoration: underline;
}

.feedback-card {
  background: rgba(16, 16, 26, 0.7);
  border: 1px solid var(--stroke);
  padding: 18px;
  border-radius: 16px;
  backdrop-filter: blur(12px);
}

.cta-title {
  margin: 0 0 6px;
  font-weight: 600;
}

.cta-text {
  margin: 0;
  color: var(--muted);
}

.footer {
  padding: 32px 8vw 48px;
  color: var(--muted);
  border-top: 1px solid var(--stroke);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.app-store-badge {
  display: inline-block;
  width: 245px;
  max-width: 100%;
}

.app-store-badge__image {
  width: 100%;
  height: auto;
  vertical-align: middle;
  object-fit: contain;
}

@media (max-width: 700px) {
  .hero {
    padding-top: 56px;
  }

  .hero-media img {
    max-width: 100%;
  }
}
