:root {
  --bg-0: #07131b;
  --bg-1: #102431;
  --surface: rgba(15, 32, 42, 0.72);
  --surface-strong: rgba(8, 22, 30, 0.88);
  --surface-light: rgba(246, 250, 252, 0.08);
  --text-main: #f2f8fb;
  --text-muted: #a6bcc8;
  --line: rgba(200, 230, 240, 0.18);
  --accent: #19b4a8;
  --accent-strong: #14d3a3;
  --accent-warm: #ff8a3d;
  --max-width: 1160px;
  --radius: 20px;
  --shadow: 0 24px 60px rgba(2, 8, 12, 0.45);
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  color: var(--text-main);
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  background:
    radial-gradient(circle at 15% 10%, #1b3d4f 0%, transparent 42%),
    radial-gradient(circle at 82% 5%, #2f4f5d 0%, transparent 36%),
    linear-gradient(145deg, var(--bg-0), var(--bg-1));
  line-height: 1.45;
  overflow-x: hidden;
}

.backdrop {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.orb {
  position: absolute;
  filter: blur(26px);
  opacity: 0.42;
}

.orb-a {
  width: 360px;
  height: 360px;
  background: #19b4a8;
  top: -90px;
  right: -90px;
  animation: driftA 16s ease-in-out infinite;
}

.orb-b {
  width: 280px;
  height: 280px;
  background: #ff8a3d;
  bottom: 8%;
  left: -80px;
  animation: driftB 18s ease-in-out infinite;
}

.orb-c {
  width: 220px;
  height: 220px;
  background: #3f7ea2;
  top: 40%;
  right: 18%;
  animation: driftC 15s ease-in-out infinite;
}

.site-header,
.section,
.site-footer {
  width: min(var(--max-width), calc(100vw - 2.2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 1rem;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 18, 25, 0.72);
  backdrop-filter: blur(14px);
  z-index: 30;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text-main);
  text-decoration: none;
  font-weight: 700;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.42);
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
}

.site-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text-main);
}

.section {
  padding: 5rem 0;
}

.section-alt {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  align-items: center;
  gap: 3rem;
  padding-top: 4.4rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-strong);
  font-weight: 700;
  font-size: 0.74rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces", "Georgia", serif;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2rem, 5vw, 4.25rem);
  max-width: 13ch;
}

.lead {
  margin: 1.2rem 0 1.5rem;
  color: var(--text-muted);
  max-width: 56ch;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(120deg, var(--accent), var(--accent-strong));
  color: #022423;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(25, 180, 168, 0.33);
}

.button-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text-main);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  box-shadow: 0 10px 22px rgba(5, 14, 20, 0.45);
}

.button-small {
  min-height: 38px;
  padding: 0.55rem 0.95rem;
  font-size: 0.9rem;
}

.hero-points {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.hero-points li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--text-muted);
}

.hero-points li::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-warm);
}

.hero-visual {
  position: relative;
  min-height: 500px;
}

.phone-shot {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  background: #0a1b24;
}

.phone-shot img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
}

.shot-main {
  left: 50%;
  top: 5%;
  width: min(84%, 460px);
  transform: translateX(-50%) rotate(-1deg);
  z-index: 4;
  animation: floatMain 6.6s ease-in-out infinite;
}

.shot-left {
  left: 0;
  bottom: 8%;
  width: min(56%, 310px);
  transform: rotate(-8deg);
  z-index: 3;
  animation: floatLeft 7.4s ease-in-out infinite;
}

.shot-right {
  right: 0;
  top: 24%;
  width: min(56%, 310px);
  transform: rotate(9deg);
  z-index: 2;
  animation: floatRight 7.1s ease-in-out infinite;
}

.screenshots-grid {
  margin-top: 1.6rem;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.screenshot-card {
  margin: 0;
  padding: 0.55rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
}

.screenshot-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
  border-radius: 14px;
}

.screenshot-card figcaption {
  margin-top: 0.55rem;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 4.3vw, 3rem);
  margin-top: 0.2rem;
}

.feature-grid {
  margin-top: 1.6rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  padding: 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(8px);
}

.feature-card h3 {
  font-size: 1.45rem;
}

.feature-card p {
  margin: 0.7rem 0 0;
  color: var(--text-muted);
}

.steps {
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

.steps li {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: start;
  gap: 0.85rem;
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface-strong);
}

.steps span {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Fraunces", "Georgia", serif;
  font-size: 1.35rem;
  color: #082625;
  background: linear-gradient(145deg, var(--accent-strong), var(--accent));
}

.steps h3 {
  font-size: 1.35rem;
}

.steps p {
  margin: 0.45rem 0 0;
  color: var(--text-muted);
}

.pricing-grid {
  margin-top: 1.7rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.price-card {
  position: relative;
  padding: 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
}

.price-card h3 {
  font-size: 1.7rem;
}

.price-card ul {
  margin: 0.9rem 0 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
}

.price-card li + li {
  margin-top: 0.5rem;
}

.price-value {
  margin: 0.35rem 0 0;
  font-size: 1.12rem;
  color: #9eeed1;
}

.price-card.highlight {
  background: linear-gradient(180deg, rgba(20, 211, 163, 0.17), rgba(13, 37, 44, 0.92));
}

.badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: 0;
  border-radius: 999px;
  padding: 0.25rem 0.55rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(255, 138, 61, 0.22);
}

.privacy-card,
.download-cta {
  padding: clamp(1.1rem, 5vw, 2rem);
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--line);
  background: var(--surface-strong);
}

.privacy-card h2,
.download-cta h2 {
  font-size: clamp(1.8rem, 4.2vw, 2.7rem);
  margin-top: 0.2rem;
}

.privacy-card p,
.download-cta p {
  color: var(--text-muted);
  margin: 0.8rem 0 0;
  max-width: 65ch;
}

.privacy-card ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 1.4rem 0 2rem;
  border-top: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 0.95rem;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatMain {
  0%,
  100% {
    transform: translateX(-50%) rotate(-1deg) translateY(0);
  }
  50% {
    transform: translateX(-50%) rotate(-1deg) translateY(-12px);
  }
}

@keyframes floatLeft {
  0%,
  100% {
    transform: rotate(-8deg) translateY(0);
  }
  50% {
    transform: rotate(-8deg) translateY(-9px);
  }
}

@keyframes floatRight {
  0%,
  100% {
    transform: rotate(9deg) translateY(0);
  }
  50% {
    transform: rotate(9deg) translateY(-8px);
  }
}

@keyframes driftA {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(20px) translateX(-18px);
  }
}

@keyframes driftB {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-12px) translateX(25px);
  }
}

@keyframes driftC {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

@media (max-width: 980px) {
  .site-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 2.8rem;
  }

  .hero-visual {
    min-height: 430px;
    max-width: 560px;
    width: 100%;
    margin-inline: auto;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 0.45rem;
    border-radius: 16px;
  }

  .site-header .button-small {
    display: none;
  }

  .section {
    padding: 3.5rem 0;
  }

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

  .hero-visual {
    min-height: 360px;
  }

  .shot-main {
    width: 76%;
    top: 6%;
  }

  .shot-left,
  .shot-right {
    width: 52%;
  }

  .shot-left {
    left: 2%;
    bottom: 1%;
  }

  .shot-right {
    right: 2%;
    top: 22%;
  }

  .screenshots-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    flex-direction: column;
    font-size: 0.88rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
