:root {
  --bg: #eef4ff;
  --bg-soft: #f8fbff;
  --surface: rgba(255, 255, 255, 0.94);
  --surface-strong: #ffffff;
  --text: #11265f;
  --text-soft: #55688f;
  --line: rgba(30, 82, 179, 0.12);
  --primary: #123a97;
  --primary-dark: #0c2870;
  --secondary: #2a80ff;
  --accent: #26c5ff;
  --shadow-lg: 0 24px 80px rgba(16, 44, 118, 0.12);
  --shadow-md: 0 16px 36px rgba(16, 44, 118, 0.1);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100vw - 2rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(42, 128, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #fbfdff 0%, #eef4ff 52%, #f8fbff 100%);
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
  overflow: clip;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 1rem 0;
  backdrop-filter: blur(18px);
  background: rgba(251, 253, 255, 0.84);
  border-bottom: 1px solid rgba(18, 58, 151, 0.06);
}

.nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  padding: 3px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(30, 82, 179, 0.1);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.brand-copy {
  display: grid;
  gap: 0.12rem;
}

.brand-copy strong,
.footer-brand strong {
  font-size: 1.06rem;
  line-height: 1;
}

.brand-copy small,
.footer-brand p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.88rem;
}

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

.site-nav a {
  color: var(--text-soft);
  font-weight: 600;
}

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

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
}

.hero-section,
.screens-section,
.features-section,
.business-section,
.benefits-section,
.site-footer {
  padding: 2.2rem 0 4.4rem;
}

.hero-section {
  padding-top: 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.88fr);
  gap: 2rem;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--secondary);
}

.eyebrow span,
.section-kicker::before {
  content: "";
  width: 40px;
  height: 1px;
  background: currentColor;
}

.hero-copy h1,
.section-heading h2 {
  margin: 1rem 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.45rem, 6vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero-text,
.footer-brand p {
  color: var(--text-soft);
  line-height: 1.7;
}

.hero-text {
  margin: 1.2rem 0 0;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.7rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-weight: 700;
  border: 1px solid transparent;
  box-shadow: 0 18px 38px rgba(42, 128, 255, 0.22);
  transition: transform 180ms ease, filter 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
  border-color: rgba(30, 82, 179, 0.14);
  box-shadow: none;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: #ffffff;
}

.hero-tags,
.business-tags,
.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-tags {
  margin-top: 1.8rem;
}

.hero-tags span,
.business-tags span,
.footer-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(30, 82, 179, 0.12);
  box-shadow: var(--shadow-md);
  color: var(--primary);
  font-weight: 700;
}

.hero-poster,
.screen-card,
.feature-card,
.benefit-card,
.site-footer {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(30, 82, 179, 0.09);
  box-shadow: var(--shadow-lg);
}

.hero-poster {
  padding: 1.4rem;
  border-radius: var(--radius-xl);
}

.hero-poster img {
  width: min(100%, 320px);
  margin-inline: auto;
  border-radius: 28px;
}

.section-heading {
  display: grid;
  gap: 0.85rem;
  max-width: 54rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.screen-mosaic,
.feature-grid,
.benefit-grid {
  display: grid;
  gap: 1rem;
}

.screen-mosaic {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2rem;
}

.screen-card {
  padding: 0.95rem;
  border-radius: 28px;
}

.screen-card h3,
.feature-card h3,
.benefit-card h3 {
  margin: 1rem 0 0;
  font-size: 1.2rem;
}

.screen-frame {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 9 / 19.5;
  background: #eef4ff;
}

.screen-frame img {
  width: 100%;
  height: calc(100% + 30px);
  margin: -20px 0 -10px;
  object-fit: cover;
}

.screen-card:nth-child(2),
.screen-card:nth-child(4) {
  transform: translateY(28px);
}

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

.feature-card,
.benefit-card {
  padding: 1.2rem;
  border-radius: 28px;
}

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

.feature-card li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--text-soft);
  line-height: 1.55;
}

.feature-card li::before {
  content: "";
  position: absolute;
  top: 0.58rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  box-shadow: 0 0 0 6px rgba(42, 128, 255, 0.08);
}

.business-tags,
.benefit-grid {
  margin-top: 2rem;
}

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

.benefit-card {
  text-align: center;
}

.site-footer {
  padding: 1.6rem 0 2rem;
  border-radius: 40px 40px 0 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.footer-mark {
  width: 56px;
  height: 56px;
}

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

@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-poster img {
    width: min(100%, 260px);
  }

  .screen-card:nth-child(2),
  .screen-card:nth-child(4) {
    transform: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 0.9rem 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.7rem);
    left: 0;
    right: 0;
    display: grid;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(30, 82, 179, 0.1);
    border-radius: 22px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-section {
    padding-top: 2rem;
  }

  .screen-mosaic,
  .feature-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .section-heading h2 {
    line-height: 1.03;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100vw - 1.2rem, 100%);
  }

  .brand-copy small {
    display: none;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(2.1rem, 12vw, 3rem);
  }

  .section-heading h2 {
    font-size: clamp(1.75rem, 9vw, 2.45rem);
  }

  .hero-poster,
  .screen-card,
  .feature-card,
  .benefit-card {
    border-radius: 24px;
  }

  .screen-frame {
    border-radius: 20px;
  }
}
