:root {
  --ink: #14171c;
  --muted: #4f5662;
  --soft: #f6f7f9;
  --line: #d7dbe2;
  --blue: #16294f;
  --blue-2: #1e3a6e;
  --green: #2c7a4b;
  --green-soft: #dcf3e4;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 20px;
  grid-template-columns: auto 1fr auto;
  height: 74px;
  left: 0;
  padding: 0 clamp(20px, 5vw, 56px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand,
.footer-brand {
  align-items: center;
  display: flex;
  gap: 12px;
}

.brand img,
.footer-brand img {
  height: 44px;
  object-fit: contain;
  width: 44px;
}

.brand strong,
.footer-brand strong {
  color: var(--blue);
  display: block;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.brand small,
.footer-brand small {
  color: #667085;
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  margin-top: 5px;
  text-transform: uppercase;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: center;
}

.nav-links a {
  border: 1px solid transparent;
  border-radius: 999px;
  color: #353b45;
  font-size: 14px;
  font-weight: 800;
  padding: 9px 13px;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease;
}

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

.nav-links a.is-active {
  background: var(--green-soft);
  border-color: rgba(44, 122, 75, 0.22);
  box-shadow: inset 0 0 0 1px rgba(44, 122, 75, 0.1);
  color: var(--green);
}

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

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

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

.button-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 16px 32px rgba(22, 41, 79, 0.18);
}

.button-primary:hover {
  background: var(--blue-2);
}

.button-secondary,
.button-outline {
  background: var(--white);
  border: 1px solid #a6adb9;
  color: var(--blue);
}

.button-secondary:hover,
.button-outline:hover {
  background: #eef0f4;
}

.button-light {
  background: var(--white);
  color: var(--blue);
}

.button-light:hover {
  background: #eef0f4;
}

.button.full {
  width: 100%;
}

.hero {
  min-height: calc(88vh - 74px);
  overflow: hidden;
  position: relative;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(246, 247, 249, 0.96) 0%, rgba(246, 247, 249, 0.78) 44%, rgba(246, 247, 249, 0.22) 100%),
    url("assets/regcap-hero.png") center / cover no-repeat;
  inset: 0;
  position: absolute;
}

.hero-content {
  margin: 0 auto;
  max-width: 1240px;
  min-height: calc(88vh - 74px);
  padding: clamp(64px, 9vw, 110px) clamp(20px, 5vw, 56px);
  position: relative;
  z-index: 1;
}

.eyebrow {
  align-items: center;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  margin: 0 0 18px;
  padding: 10px 14px;
  text-transform: uppercase;
}

.eyebrow.green {
  background: transparent;
  border: 0;
  color: var(--green);
  padding: 0;
}

.eyebrow.light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  color: #bfe5cb;
}

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

.hero h1 {
  color: var(--blue);
  font-size: clamp(58px, 9vw, 112px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.96;
}

.hero-copy {
  color: #353b45;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  line-height: 1.55;
  margin-top: 24px;
  max-width: 710px;
}

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

.section.product-section {
  padding-bottom: 56px;
  padding-top: 56px;
}

.section-heading.product-heading {
  max-width: 860px;
}

.feature-band {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}

.feature-band article,
.price-card,
.screen-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

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

.feature-icon {
  align-items: center;
  background: #eaeff7;
  border-radius: 8px;
  color: var(--blue);
  display: flex;
  font-size: 13px;
  font-weight: 950;
  height: 44px;
  justify-content: center;
  margin-bottom: 16px;
  width: 44px;
}

.feature-band h2 {
  font-size: 18px;
  font-weight: 950;
}

.feature-band p,
.screen-card p,
.section-heading p,
.price-card .note {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.feature-band p {
  margin-top: 8px;
}

.section {
  margin: 0 auto;
  max-width: 1240px;
  padding: 72px clamp(20px, 5vw, 56px);
}

.hero[id],
.feature-band[id],
.section[id] {
  scroll-margin-top: 92px;
}

.section-heading {
  margin-bottom: 32px;
  max-width: 780px;
}

.section-heading.split {
  align-items: end;
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr minmax(260px, 520px);
  max-width: none;
}

.section-heading h2,
.flow-panel h2 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 950;
  line-height: 1.08;
}

.section-heading > p,
.section-heading div + p {
  margin-top: 12px;
}

.screens-grid,
.pricing-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}

.screen-card {
  overflow: hidden;
}

.screen-card img {
  aspect-ratio: 16 / 9;
  background: #f5f7fb;
  object-fit: contain;
  width: 100%;
}

.screen-card div {
  padding: 22px;
}

.screen-card h3 {
  font-size: 19px;
  font-weight: 950;
  margin-bottom: 8px;
}

.pricing-section {
  max-width: none;
  padding-left: clamp(20px, 5vw, 56px);
  padding-right: clamp(20px, 5vw, 56px);
}

.pricing-section > * {
  margin-left: auto;
  margin-right: auto;
  max-width: 1240px;
}

.pricing-heading {
  max-width: 840px;
  text-align: center;
}

.pricing-heading .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.pricing-heading > p {
  margin-left: auto;
  margin-right: auto;
  max-width: 690px;
}

.qr-section {
  align-items: center;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
}

.qr-copy {
  max-width: 560px;
}

.qr-copy h2 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 950;
  line-height: 1.08;
}

.qr-copy > p:last-child {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin-top: 16px;
}

.qr-preview {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.qr-card-head {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 12px;
  padding: 18px 22px;
}

.qr-card-head img {
  height: 34px;
  width: 34px;
}

.qr-card-head strong {
  color: var(--blue);
  font-size: 17px;
  font-weight: 950;
}

.qr-card-body {
  align-items: center;
  display: grid;
  gap: 26px;
  grid-template-columns: 220px 1fr;
  padding: 26px;
}

.qr-code {
  aspect-ratio: 1;
  background: var(--white);
  border: 1px solid #bfc7d4;
  border-radius: 8px;
  position: relative;
  width: 220px;
}

.qr-corner,
.qr-corner::after,
.qr-dot {
  background: var(--blue);
  position: absolute;
}

.qr-corner {
  height: 58px;
  width: 58px;
}

.qr-corner::after {
  background: var(--white);
  content: "";
  height: 32px;
  left: 13px;
  top: 13px;
  width: 32px;
}

.qr-corner.top-left {
  left: 18px;
  top: 18px;
}

.qr-corner.top-right {
  right: 18px;
  top: 18px;
}

.qr-corner.bottom-left {
  bottom: 18px;
  left: 18px;
}

.qr-dot {
  height: 16px;
  width: 16px;
}

.qr-dot.d1 { left: 96px; top: 26px; }
.qr-dot.d2 { left: 126px; top: 50px; }
.qr-dot.d3 { left: 93px; top: 88px; }
.qr-dot.d4 { right: 52px; top: 96px; }
.qr-dot.d5 { left: 132px; top: 124px; }
.qr-dot.d6 { right: 26px; top: 134px; }
.qr-dot.d7 { left: 92px; bottom: 58px; }
.qr-dot.d8 { left: 130px; bottom: 28px; }
.qr-dot.d9 { right: 58px; bottom: 56px; }

.qr-result span {
  background: var(--green-soft);
  border-radius: 8px;
  color: #10672f;
  display: inline-flex;
  font-size: 18px;
  font-weight: 950;
  padding: 12px 16px;
}

.qr-result dl {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
}

.qr-result dl div {
  display: grid;
  gap: 8px;
  grid-template-columns: 82px 1fr;
}

.qr-result dt {
  color: #667085;
  font-size: 13px;
  font-weight: 900;
  margin: 0;
}

.qr-result dd {
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
  margin: 0;
}

.price-card {
  padding: 28px;
}

.price-card.featured {
  background: #f8fafc;
  border-color: var(--blue);
}

.card-top {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.card-top span {
  background: var(--green-soft);
  border-radius: 999px;
  color: #10672f;
  font-size: 12px;
  font-weight: 950;
  padding: 7px 11px;
}

.price-card h3 {
  font-size: 22px;
  font-weight: 950;
}

.price {
  color: var(--blue);
  font-size: 42px;
  font-weight: 950;
  line-height: 1;
  margin-top: 22px;
}

.unit {
  color: #667085;
  font-size: 13px;
  font-weight: 850;
  margin-top: 8px;
}

.note {
  min-height: 98px;
  margin-top: 22px;
}

.price-card ul {
  color: #353b45;
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 22px 0 26px;
  padding: 0;
}

.price-card li {
  font-size: 14px;
  font-weight: 750;
  line-height: 1.45;
  padding-left: 24px;
  position: relative;
}

.price-card li::before {
  color: var(--green);
  content: "\2713";
  font-weight: 950;
  left: 0;
  position: absolute;
  top: 0;
}

.event-plan {
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  margin-top: 22px;
  padding: clamp(24px, 4vw, 34px);
}

.event-plan h3 {
  color: var(--blue);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 950;
  line-height: 1.08;
  margin-top: 8px;
}

.event-plan p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 720px;
}

.event-price {
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  padding: 22px;
}

.event-price strong {
  color: var(--blue);
  font-size: 38px;
  font-weight: 950;
  line-height: 1;
}

.event-price span {
  color: #667085;
  font-size: 13px;
  font-weight: 850;
}

.event-price small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
  margin-bottom: 6px;
}

.flow-panel {
  background: var(--blue);
  border-radius: 8px;
  color: var(--white);
  padding: clamp(28px, 5vw, 44px);
}

.flow-copy {
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 760px;
}

.flow {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  margin-top: 32px;
}

.flow div {
  align-items: center;
  display: flex;
  gap: 14px;
}

.flow strong {
  align-items: center;
  background: var(--white);
  border-radius: 999px;
  color: var(--blue);
  display: flex;
  flex: 0 0 44px;
  font-size: 14px;
  font-weight: 950;
  height: 44px;
  justify-content: center;
}

.flow span {
  font-size: 14px;
  font-weight: 850;
  line-height: 1.45;
}

.flow b {
  align-self: center;
  color: #bfe5cb;
  font-size: 22px;
}

.flow-actions {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
  padding-top: 28px;
}

.contact-link {
  color: #d8e6ff;
  font-size: 15px;
  font-weight: 850;
}

.contact-link:hover {
  color: var(--white);
}

.site-footer {
  align-items: center;
  background: var(--ink);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  padding: 34px clamp(20px, 5vw, 56px);
}

.footer-brand strong {
  color: var(--white);
}

.footer-brand small,
.footer-links a {
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: flex;
  gap: 22px;
  font-size: 14px;
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--white);
}

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

  .nav-links {
    display: none;
  }

  .feature-band,
  .screens-grid,
  .pricing-grid,
  .event-plan,
  .section-heading.split,
  .qr-section {
    grid-template-columns: 1fr;
  }

  .qr-copy {
    max-width: none;
  }

  .qr-card-body {
    grid-template-columns: 1fr;
  }

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

  .flow b {
    display: none;
  }

  .note {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    height: auto;
    padding-bottom: 12px;
    padding-top: 12px;
  }

  .brand small {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .button {
    min-height: 42px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-content {
    min-height: 660px;
  }

  .hero-actions,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

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

  .qr-code {
    width: min(100%, 220px);
  }

  .qr-card-body {
    padding: 20px;
  }

  .footer-links {
    flex-direction: column;
  }
}
