:root {
  --background: #dce8f5;
  --surface: #f7fbff;
  --ink: #052757;
  --muted: #60728d;
  --green: #23a00b;
  --orange: #f88016;
  --line: rgba(5, 39, 87, 0.14);
  --shadow: 0 24px 70px rgba(5, 39, 87, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--background);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(220, 232, 245, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 900;
  font-size: 20px;
}

.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.nav-action,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  padding: 0 18px;
  white-space: nowrap;
}

.nav-action,
.primary-action {
  color: #fff;
  background: var(--green);
}

.secondary-action {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 118px clamp(20px, 6vw, 80px) 72px;
  isolation: isolate;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 1;
  font-weight: 950;
}

.lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: #425a79;
  font-size: clamp(20px, 2.5vw, 30px);
  line-height: 1.25;
  font-weight: 650;
}

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

.hero-scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.phone {
  position: absolute;
  right: clamp(24px, 9vw, 132px);
  bottom: 8vh;
  width: clamp(210px, 24vw, 330px);
  aspect-ratio: 0.5;
  padding: 14px;
  background: #102b56;
  border-radius: 34px;
  box-shadow: var(--shadow);
  transform: rotate(5deg);
}

.phone-top {
  width: 28%;
  height: 5px;
  margin: 0 auto 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
}

.phone-screen {
  height: calc(100% - 17px);
  padding: 18px;
  background: var(--surface);
  border-radius: 24px;
}

.screen-row,
.screen-media,
.screen-button {
  border-radius: 8px;
}

.screen-row {
  height: 18px;
  margin-bottom: 12px;
  background: rgba(5, 39, 87, 0.16);
}

.screen-row.active {
  width: 68%;
  background: var(--ink);
}

.screen-row.short {
  width: 52%;
}

.screen-media {
  aspect-ratio: 1;
  margin: 20px 0;
  background:
    linear-gradient(135deg, rgba(35, 160, 11, 0.26), rgba(248, 128, 22, 0.2)),
    #eaf1f8;
  border: 1px solid var(--line);
}

.screen-button {
  height: 42px;
  background: var(--green);
}

.panel {
  position: absolute;
  display: grid;
  gap: 8px;
  padding: 18px;
  background: rgba(247, 251, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(5, 39, 87, 0.12);
  backdrop-filter: blur(14px);
}

.panel-large {
  right: clamp(220px, 32vw, 520px);
  bottom: 18vh;
  width: min(280px, 28vw);
}

.panel-small {
  right: clamp(18px, 7vw, 84px);
  top: 24vh;
}

.panel-kicker {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.progress {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(5, 39, 87, 0.1);
}

.progress span {
  display: block;
  width: 72%;
  height: 100%;
  background: var(--green);
}

.check {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #fff;
  background: var(--green);
  border-radius: 999px;
  font-weight: 900;
}

.section,
.status-band {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

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

h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.04;
}

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

.feature-grid article,
.status-band {
  background: rgba(247, 251, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-grid article {
  padding: 24px;
}

.feature-icon {
  color: var(--orange);
  font-weight: 950;
}

h3 {
  margin: 18px 0 8px;
  font-size: 22px;
}

.feature-grid p,
.status-band p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  font-weight: 600;
}

.status-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 56px;
  padding: 28px;
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
  }

  nav a:not(.nav-action) {
    display: none;
  }

  .hero {
    min-height: 96svh;
    padding-top: 104px;
    padding-bottom: 210px;
  }

  .phone {
    right: 28px;
    bottom: 28px;
    width: 178px;
    border-radius: 28px;
  }

  .panel-large {
    display: none;
  }

  .panel-small {
    right: 170px;
    top: auto;
    bottom: 72px;
    max-width: 170px;
  }

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

@media (max-width: 520px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand span {
    font-size: 17px;
  }

  .nav-action {
    min-height: 40px;
    padding: 0 12px;
    font-size: 14px;
  }

  .hero-actions a {
    width: 100%;
  }

  .phone {
    opacity: 0.78;
  }

  .panel-small {
    display: none;
  }
}
