:root {
  color-scheme: dark;
  --bg: #050807;
  --panel: #0d1210;
  --panel-2: #121816;
  --text: #f3f7f3;
  --muted: #bac7bd;
  --dim: #7f8d85;
  --line: rgba(220, 236, 225, 0.18);
  --green: #56e2a4;
  --green-2: #0fbf83;
  --red: #ff7676;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 18% 16%, rgba(86, 226, 164, 0.14), transparent 28rem),
    radial-gradient(circle at 86% 72%, rgba(48, 134, 241, 0.10), transparent 30rem),
    linear-gradient(145deg, #06100b 0%, #050807 48%, #070b12 100%);
  color: var(--text);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(5, 8, 7, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 7px rgba(86, 226, 164, 0.35));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--green);
}

.container {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 56px;
  padding: 48px 0 58px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(48px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

.accent {
  color: var(--green);
}

.hero-copy {
  margin: 26px 0 0;
  max-width: 540px;
  color: var(--muted);
  font-size: clamp(18px, 2.4vw, 22px);
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.store-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 18px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid var(--line);
  cursor: pointer;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease;
}

.store-button {
  background: #f7fff9;
  color: #07100c;
}

.button {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.store-button:hover,
.store-button:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 26px 62px rgba(0, 0, 0, 0.34);
}

.store-button:hover,
.store-button:focus-visible {
  background: #ffffff;
  box-shadow:
    0 20px 46px rgba(0, 0, 0, 0.30),
    0 0 28px rgba(86, 226, 164, 0.18);
}

.button:hover,
.button:focus-visible {
  color: var(--green);
  background: rgba(13, 20, 17, 0.55);
}

.store-button:focus-visible,
.button:focus-visible {
  outline: 2px solid rgba(86, 226, 164, 0.72);
  outline-offset: 4px;
}

.support-note {
  margin-top: 22px;
  color: var(--dim);
  font-size: 15px;
}

.visual {
  width: 100%;
  min-height: 560px;
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: visible;
  justify-self: end;
}

.hero-product {
  position: relative;
  width: min(100%, 520px);
  min-height: 620px;
  display: grid;
  place-items: center;
  justify-self: end;
  transform: translateY(-48px);
}

.hero-product::before {
  content: "";
  position: absolute;
  inset: 14% 12% 8%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(86, 226, 164, 0.18), transparent 64%);
  filter: blur(42px);
  opacity: 0.85;
  transform: translateY(18px);
}

.hero-product::after {
  content: "";
  position: absolute;
  inset: 20% 4% 7%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(86, 226, 164, 0.20), transparent 62%);
  filter: blur(32px);
  opacity: 0.9;
  z-index: -1;
}

.hero-device {
  position: relative;
  z-index: 1;
  width: min(80%, 400px);
  display: block;
  filter: drop-shadow(0 28px 54px rgba(0, 0, 0, 0.56));
  transform: translateY(10px);
}

.hero-chip {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 3px;
  min-width: 148px;
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(13, 20, 17, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(24px) saturate(1.35);
  -webkit-backdrop-filter: blur(24px) saturate(1.35);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.hero-chip:hover {
  transform: translateY(-4px);
  background: rgba(13, 20, 17, 0.55);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 26px 62px rgba(0, 0, 0, 0.34);
}

.hero-chip span {
  color: var(--dim);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 220ms ease;
}

.hero-chip strong {
  color: var(--text);
  font-size: 19px;
  line-height: 1.1;
  transition: color 220ms ease;
}

.hero-chip:hover span,
.hero-chip:hover strong {
  color: var(--green);
}

.hero-chip-left {
  left: -6px;
  top: 92px;
}

.hero-chip-top {
  right: 22px;
  top: 24px;
}

.hero-chip-ios {
  left: 8px;
  top: 244px;
  min-width: 128px;
}

.hero-chip-middle {
  left: -14px;
  bottom: 254px;
}

.hero-chip-budget {
  right: -6px;
  top: 248px;
}

.hero-chip-right {
  right: -8px;
  bottom: 136px;
}

.hero-chip-bottom {
  left: 60px;
  bottom: 44px;
}

.hero-chip-cards {
  right: -18px;
  bottom: 278px;
  min-width: 142px;
}

.section {
  padding: 88px 0;
}

.section-header {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-header h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.04;
}

.section-header p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.screenshot-wall {
  margin-top: 42px;
  padding: 108px 0 84px;
  background:
    radial-gradient(circle at 12% 42%, rgba(86, 226, 164, 0.10), transparent 28rem),
    radial-gradient(circle at 86% 44%, rgba(15, 191, 131, 0.08), transparent 24rem),
    rgba(5, 8, 7, 0.34);
  color: var(--text);
  isolation: isolate;
}

.screenshot-carousel {
  position: relative;
  width: min(calc(4 * 290px + 3 * 18px), calc(100% - 48px));
  margin: 0 auto;
  overflow: visible;
}

.screenshot-clip {
  width: 100%;
  overflow: hidden;
}

.showcase-grid {
  display: flex;
  align-items: stretch;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  padding: 16px 0 48px;
  scrollbar-width: none;
}

.showcase-grid::-webkit-scrollbar {
  display: none;
}

.showcase-tile {
  flex: 0 0 calc((min(calc(4 * 290px + 3 * 18px), 100vw - 48px) - 3 * 18px) / 4);
  scroll-snap-align: start;
  overflow: hidden;
  border-radius: 26px;
  background: rgba(9, 14, 12, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease;
}

.showcase-tile:hover {
  transform: translateY(-8px);
  border-color: rgba(86, 226, 164, 0.26);
  box-shadow: 0 34px 82px rgba(0, 0, 0, 0.42);
}

.showcase-tile img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 280ms ease;
}

.showcase-tile:hover img {
  transform: scale(1.025);
}

.carousel-arrow {
  position: absolute;
  top: 45%;
  z-index: 2;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 999px;
  background: rgba(12, 18, 15, 0.72);
  color: rgba(243, 247, 243, 0.74);
  font-size: 42px;
  line-height: 1;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
  cursor: pointer;
}

.carousel-arrow:hover {
  color: var(--green);
}

.carousel-arrow-left {
  left: -34px;
}

.carousel-arrow-right {
  right: -34px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin-top: 8px;
}

.carousel-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(186, 199, 189, 0.28);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease, opacity 180ms ease;
}

.carousel-dots button:hover {
  background: rgba(186, 199, 189, 0.55);
}

.carousel-dots .active {
  width: 32px;
  background: var(--green);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.feature {
  min-height: 0;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 34px;
  background:
    radial-gradient(circle at 16% 8%, rgba(86, 226, 164, 0.12), transparent 15rem),
    rgba(13, 20, 17, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 64px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(24px) saturate(1.35);
  -webkit-backdrop-filter: blur(24px) saturate(1.35);
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    background 240ms ease,
    box-shadow 240ms ease;
}

.feature:hover {
  transform: translateY(-8px);
  background:
    radial-gradient(circle at 16% 8%, rgba(86, 226, 164, 0.16), transparent 15rem),
    rgba(13, 20, 17, 0.54);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 32px 82px rgba(0, 0, 0, 0.34);
}

.feature::after {
  content: none;
}

.feature-body {
  flex: 1;
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 320px;
  flex-direction: column;
  padding: 30px;
}

.feature-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: rgba(186, 199, 189, 0.82);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feature h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.15;
}

.feature p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
}

.feature-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(226, 239, 229, 0.86);
  font-size: 12.5px;
  line-height: 1.35;
}

.feature-list span::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 14px rgba(86, 226, 164, 0.45);
}

.feature-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 22px;
}

.feature-points span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(13, 20, 17, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(226, 239, 229, 0.88);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(22px) saturate(1.3);
  -webkit-backdrop-filter: blur(22px) saturate(1.3);
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    background 200ms ease;
}

.feature:hover .feature-points span {
  background: rgba(13, 20, 17, 0.50);
  border-color: rgba(255, 255, 255, 0.22);
}

.feature-points span:hover {
  transform: translateY(-2px);
}

.policy-card {
  max-width: 880px;
  padding: 34px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
}

.policy-card h1 {
  font-size: clamp(36px, 5vw, 58px);
}

.policy-card h2 {
  margin-top: 34px;
}

.policy-card p,
.policy-card li {
  color: var(--muted);
  line-height: 1.7;
}

.policy-card ul {
  padding-left: 22px;
}

.footer {
  padding: 42px 0;
  color: var(--dim);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer a {
  color: var(--muted);
  text-decoration: none;
}

@media (max-width: 1180px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 42px;
  }

  .visual {
    width: 100%;
    min-height: 520px;
    justify-self: stretch;
  }

  .hero-product {
    justify-self: center;
    min-height: 600px;
    transform: none;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-body {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .nav {
    width: min(100% - 28px, 1120px);
  }

  .nav-links {
    gap: 12px;
    font-size: 13px;
  }

  .container {
    width: min(100% - 28px, 1120px);
  }

  .hero {
    gap: 32px;
    padding-bottom: 42px;
  }

  .actions {
    flex-direction: column;
  }

  .store-button,
  .button {
    width: 100%;
  }

  .visual {
    min-height: auto;
  }

  .hero-product {
    width: min(100%, 390px);
    min-height: 520px;
  }

  .hero-product::before {
    inset: 18% 10% 8%;
    border-radius: 999px;
  }

  .hero-device {
    width: min(90%, 330px);
  }

  .hero-chip {
    min-width: 124px;
    padding: 11px 12px;
    border-radius: 17px;
  }

  .hero-chip span {
    font-size: 10px;
  }

  .hero-chip strong {
    font-size: 15px;
  }

  .hero-chip-left {
    left: 0;
    top: 72px;
  }

  .hero-chip-top {
    right: 2px;
    top: 18px;
  }

  .hero-chip-ios {
    left: 0;
    top: 208px;
    min-width: 112px;
  }

  .hero-chip-middle {
    left: 0;
    bottom: 184px;
  }

  .hero-chip-budget {
    right: 0;
    top: 194px;
  }

  .hero-chip-right {
    right: 0;
    bottom: 92px;
  }

  .hero-chip-bottom {
    left: 34px;
    bottom: 22px;
  }

  .hero-chip-cards {
    right: 0;
    bottom: 172px;
  }

  .screenshot-wall {
    margin-top: 28px;
    padding: 62px 0 56px;
  }

  .showcase-grid {
    gap: 14px;
    padding-inline: 18px;
    scroll-padding-inline: 18px;
  }

  .showcase-tile {
    flex-basis: min(72vw, 292px);
    border-radius: 24px;
  }

  .carousel-arrow {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .store-button,
  .button,
  .hero-chip,
  .feature,
  .feature-points span,
  .showcase-tile,
  .showcase-tile img {
    transition: none;
  }

  .store-button:hover,
  .store-button:focus-visible,
  .button:hover,
  .button:focus-visible,
  .hero-chip:hover,
  .feature:hover,
  .feature-points span:hover,
  .showcase-tile:hover,
  .showcase-tile:hover img {
    transform: none;
  }
}
