:root {
  --navy: #0f1826;
  --navy-soft: #172235;
  --blue: #164be2;
  --blue-deep: #0f3dbe;
  --cyan: #51c5fe;
  --mint: #5ee9b5;
  --sky-soft: #e7edfc;
  --paper: #f7f9fd;
  --white: #fff;
  --slate: #5b6375;
  --line: rgba(15, 24, 38, 0.12);
  --line-dark: rgba(255, 255, 255, 0.14);
  --shadow: 0 28px 70px rgba(15, 24, 38, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 18% 0%, rgba(81, 197, 254, 0.24), transparent 30rem),
    radial-gradient(circle at 82% 8%, rgba(22, 75, 226, 0.18), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 48%, #edf3ff 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(15, 24, 38, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 24, 38, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 1rem;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 1rem auto 0;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 50px rgba(15, 24, 38, 0.1);
  backdrop-filter: blur(18px);
}

.brand,
.site-header nav,
.hero-actions,
.panel-topline,
.product-footer,
.support,
.site-footer,
.site-footer div {
  display: flex;
  align-items: center;
}

.brand {
  min-width: 210px;
}

.brand-logo {
  display: block;
  width: clamp(170px, 18vw, 250px);
  height: auto;
}

.site-header nav {
  justify-content: center;
  gap: 1.4rem;
  color: var(--slate);
  font-size: 0.9rem;
  font-weight: 800;
}

.site-header nav a:hover,
.site-footer a:hover {
  color: var(--blue);
}

.header-cta {
  padding: 0.72rem 1rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
  font-size: 0.88rem;
  font-weight: 900;
}

.section-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.88fr);
  gap: 2rem;
  min-height: 700px;
  align-items: center;
  padding: 6rem 0 4rem;
}

.eyebrow,
.product-tagline {
  margin: 0 0 0.8rem;
  color: var(--blue);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  letter-spacing: -0.065em;
  line-height: 0.92;
}

h1 {
  max-width: 830px;
  margin-bottom: 1.35rem;
  font-size: clamp(3.4rem, 7.7vw, 7.4rem);
  font-weight: 900;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.35rem, 5vw, 5rem);
  font-weight: 900;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.hero-text,
.section-heading p,
.product-card p,
.delivery p,
.support p,
.status-card p,
.site-footer span {
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.72;
}

.hero-text {
  max-width: 690px;
  font-size: 1.18rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  box-shadow: 0 16px 34px rgba(22, 75, 226, 0.28);
}

.secondary {
  color: var(--navy);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.76);
}

.hero-panel,
.product-card,
.support,
.status-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 1.25rem;
  border-radius: 2rem;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(81, 197, 254, 0.5), transparent 16rem),
    linear-gradient(145deg, var(--navy), #101e33 58%, var(--blue-deep));
}

.hero-panel::after {
  content: "";
  position: absolute;
  right: -4rem;
  bottom: -4rem;
  width: 14rem;
  height: 14rem;
  border: 1.8rem solid rgba(81, 197, 254, 0.16);
  border-radius: 50%;
}

.panel-topline {
  position: relative;
  z-index: 1;
  justify-content: space-between;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel-metric {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 270px;
  align-content: center;
  padding: 2rem 0;
}

.panel-metric strong {
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.85;
}

.panel-metric span {
  color: var(--mint);
  font-weight: 900;
}

.panel-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.panel-grid div {
  min-height: 140px;
  padding: 1rem;
  border: 1px solid var(--line-dark);
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.08);
}

.panel-grid strong,
.panel-grid span {
  display: block;
}

.panel-grid span {
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto 4.5rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(15, 24, 38, 0.08);
}

.proof-strip span {
  padding: 1rem;
  border-right: 1px solid var(--line);
  color: var(--navy);
  font-weight: 900;
  text-align: center;
}

.proof-strip span:last-child {
  border-right: 0;
}

.products,
.delivery {
  padding: 3.2rem 0;
}

.section-heading,
.delivery-copy {
  max-width: 760px;
  margin-bottom: 1.75rem;
}

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

.product-card {
  display: flex;
  min-height: 490px;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem;
  border-radius: 1.6rem;
}

.featured-product {
  grid-column: 1 / -1;
  min-height: 0;
  padding: clamp(1.1rem, 2vw, 1.6rem);
  background:
    radial-gradient(circle at 95% 4%, rgba(81, 197, 254, 0.16), transparent 20rem),
    var(--white);
}

.featured-product h3 {
  max-width: 780px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: -0.045em;
}

.featured-product > div:first-child p:not(.product-tagline) {
  max-width: 820px;
}

.product-card:hover {
  border-color: rgba(22, 75, 226, 0.34);
  transform: translateY(-3px);
  transition: transform 160ms ease, border-color 160ms ease;
}

.screenshot-strip {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 0.9rem;
  margin: 1.35rem 0 0.5rem;
}

.screenshot-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: var(--paper);
}

.screenshot-card:first-child {
  grid-row: span 2;
}

.screenshot-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--sky-soft);
}

.screenshot-card figcaption {
  padding: 0.85rem;
  color: var(--slate);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
}

.product-card ul {
  display: grid;
  gap: 0.72rem;
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
}

.product-card li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--navy-soft);
  font-weight: 800;
}

.product-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--mint));
}

.product-footer {
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
}

.product-footer strong {
  font-size: 1.16rem;
}

.delivery {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 2rem;
  align-items: start;
}

.steps {
  display: grid;
  gap: 1rem;
}

.steps article {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1rem;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.78);
}

.steps span {
  grid-row: span 2;
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border-radius: 1rem;
  color: var(--white);
  background: var(--navy);
  font-weight: 900;
}

.steps p {
  margin-bottom: 0;
}

.support {
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 3rem;
  margin-bottom: 4rem;
  padding: 1.4rem;
  border-radius: 1.6rem;
  background:
    radial-gradient(circle at 92% 0%, rgba(81, 197, 254, 0.2), transparent 18rem),
    var(--white);
}

.support h2 {
  max-width: 820px;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.site-footer {
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 3rem;
  font-size: 0.92rem;
}

.site-footer div {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}

.simple-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 1rem;
}

.status-card {
  max-width: 580px;
  padding: clamp(1.5rem, 6vw, 3rem);
  border-radius: 2rem;
}

.status-card h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
}

.notice {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--white);
}

.reveal {
  animation: rise 700ms ease both;
}

.delay-1 {
  animation-delay: 110ms;
}

.delay-2 {
  animation-delay: 210ms;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    border-radius: 1.35rem;
  }

  .site-header nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .hero,
  .product-grid,
  .delivery,
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 3.5rem;
  }

  .proof-strip span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip span:last-child {
    border-bottom: 0;
  }

  .product-card {
    min-height: auto;
  }

  .screenshot-strip {
    grid-template-columns: 1fr;
  }

  .screenshot-card:first-child {
    grid-row: auto;
  }

  .support,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    top: 0.5rem;
    width: min(100% - 1rem, 1180px);
  }

  .header-cta {
    display: none;
  }

  .panel-grid,
  .steps article {
    grid-template-columns: 1fr;
  }

  .steps span {
    grid-row: auto;
  }
}

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