:root {
  --color-text: #141414;
  --color-muted: #555;
  --color-soft: #f6f5f0;
  --color-border: #ececea;
  --color-yellow: #ffd700;
  --color-green: #1f9d55;
  --container: 1180px;
  --radius: 18px;
  --font-display: "Fredoka", sans-serif;
  --font-body: "Figtree", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background: #fff;
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button,
a,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}

input:focus-visible,
textarea:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--color-text);
  outline-offset: 3px;
}

.container {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
}

.section {
  padding: clamp(56px, 8vw, 92px) 0;
}

.section-soft {
  background: var(--color-soft);
  border: 1px solid var(--color-border);
  border-left: 0;
  border-right: 0;
}

.section-yellow {
  background: var(--color-yellow);
}

.section-yellow p,
.section-yellow .lead,
.section-yellow .check,
.section-yellow .value-item span {
  color: var(--color-text);
}

.section-dark {
  color: #fff;
  background: var(--color-text);
}

.section-dark .eyebrow {
  color: var(--color-yellow);
}

.section-header {
  max-width: 660px;
  margin: 0 auto 48px;
  text-align: center;
}

.eyebrow {
  display: block;
  color: #b38f00;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1;
}

h2 {
  font-size: clamp(30px, 4.5vw, 48px);
  line-height: 1.06;
}

h3 {
  font-size: 21px;
  line-height: 1.2;
}

h4 {
  font-size: 17px;
  line-height: 1.25;
}

p {
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.6;
}

.lead {
  max-width: 520px;
  margin-top: 22px;
  font-size: clamp(17px, 2vw, 20px);
}

.text-highlight {
  display: inline;
  padding: 0;
  background: linear-gradient(transparent 62%, var(--color-yellow) 62%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 28px;
  border: 2px solid var(--color-text);
  border-radius: 999px;
  background: #fff;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

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

.button:disabled {
  opacity: .7;
  cursor: progress;
  transform: none;
  box-shadow: none;
}

.button-primary {
  background: var(--color-yellow);
  box-shadow: 5px 5px 0 var(--color-text);
}

.button-dark {
  border-color: var(--color-text);
  background: var(--color-text);
  color: var(--color-yellow);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid #f0f0f0;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}

.logo {
  width: auto;
  height: 42px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #333;
  font-size: 15px;
  font-weight: 500;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
  align-content: center;
  min-height: calc(100svh - 72px);
  padding: clamp(44px, 6vw, 76px) 0 clamp(40px, 5vw, 60px);
}

.hero-media {
  max-width: 86%;
  justify-self: end;
}

.hero-media img {
  width: 100%;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.actions-center {
  justify-content: center;
}

.checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 26px;
  color: #666;
  font-size: 14px;
  font-weight: 500;
}

.check::before {
  content: "✓";
  margin-right: 7px;
  color: var(--color-green);
  font-weight: 700;
}

.rating {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.avatars {
  display: flex;
}

.avatar {
  display: grid;
  width: 36px;
  height: 36px;
  margin-left: -11px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar-more {
  border-color: var(--color-text);
  background: var(--color-yellow);
  color: var(--color-text);
}

.avatar-indigo {
  background: #6366f1;
}

.avatar-purple {
  background: #8b5cf6;
}

.avatar-sky {
  background: #0ea5e9;
}

.stars {
  color: #ffb300;
  font-size: 16px;
  letter-spacing: 2px;
}

.sponsors {
  padding: 4px 0 clamp(28px, 4vw, 44px);
  overflow: hidden;
}

.sponsor-title {
  margin-bottom: 22px;
  color: #9a9a9a;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .6px;
  text-align: center;
  text-transform: uppercase;
}

.logo-marquee {
  display: block;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  opacity: .65;
  filter: grayscale(1);
}

.logo-track {
  display: flex;
  width: max-content;
  animation: sponsor-scroll 32s linear infinite;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-right: 24px;
}

.logo-group img {
  max-height: 38px;
  object-fit: contain;
  flex: 0 0 auto;
}

.value-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
  padding: 26px 0;
  font-family: var(--font-display);
  font-size: clamp(15px, 1.8vw, 19px);
  font-weight: 500;
}

.grid {
  display: grid;
  gap: 30px;
}

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

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

.feature {
  display: grid;
  gap: 10px;
}

.icon,
.feature-icon {
  width: 48px;
  height: 48px;
  border: 2px solid var(--color-text);
  border-radius: 14px;
  background: #fff;
  object-fit: contain;
  box-sizing: border-box;
}

.icon {
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
}

.feature-icon {
  display: block;
  padding: 8px;
}

.trust-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
  padding: 8px;
  border: 2px solid var(--color-text);
  border-radius: 14px;
  background: #fff;
  object-fit: contain;
  box-sizing: border-box;
}

.spotlight {
  position: relative;
  overflow: hidden;
}

.spotlight-content {
  max-width: 520px;
  padding: clamp(56px, 8vw, 90px) 0;
}

.spotlight-image {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  height: 100%;
  pointer-events: none;
}

.sector-card,
.price-card,
.trust-card,
.contact-card,
.step-card {
  border: 2px solid var(--color-text);
  border-radius: var(--radius);
  background: #fff;
}

.sector-card {
  overflow: hidden;
  box-shadow: 6px 6px 0 var(--color-yellow);
}

.sector-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.sector-body {
  padding: 28px 24px;
}

.sector-body p,
.price-card p,
.trust-card p {
  margin-top: 8px;
  font-size: 15px;
}

.sector-body .button {
  margin-top: 16px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(260px, .82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}

.about-mobile-heading {
  display: none;
}

.about-desktop-heading {
  display: grid;
  gap: 10px;
}

.about-media {
  position: relative;
}

.about-gallery {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 520px);
}

.about-photo {
  appearance: none;
  padding: 0;
  cursor: pointer;
  margin: 0;
  overflow: hidden;
  border: 2px solid var(--color-text);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 8px 8px 0 var(--color-yellow);
  transition: transform .15s ease, box-shadow .15s ease;
}

.about-photo:hover {
  transform: translateY(-2px);
  box-shadow: 10px 10px 0 var(--color-yellow);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.gallery-open {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  place-items: center;
  padding: 24px;
}

.gallery-lightbox.is-open {
  display: grid;
}

.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, .78);
  cursor: zoom-out;
}

.gallery-lightbox-panel {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(100%, 980px);
}

.gallery-lightbox-image {
  width: auto;
  max-width: 100%;
  max-height: min(78vh, 760px);
  border: 2px solid #fff;
  border-radius: 18px;
  background: #fff;
  object-fit: contain;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .36);
}

.gallery-lightbox-caption {
  margin-top: 14px;
  color: #fff;
  font-size: 15px;
  text-align: center;
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--color-yellow);
  color: var(--color-text);
  font-family: var(--font-display);
  font-weight: 700;
  cursor: pointer;
}

.gallery-lightbox-close {
  top: -18px;
  right: -18px;
  width: 44px;
  height: 44px;
  font-size: 26px;
  line-height: 1;
}

.gallery-lightbox-nav {
  top: 50%;
  width: 52px;
  height: 52px;
  font-size: 40px;
  transform: translateY(-50%);
}

.gallery-lightbox-prev {
  left: -22px;
}

.gallery-lightbox-next {
  right: -22px;
}

.about-photo {
  aspect-ratio: 4 / 3;
}

.about-gallery-placeholder {
  display: none;
  grid-column: 1 / -1;
  gap: 8px;
  padding: 28px;
  border: 2px dashed #d4c37a;
  border-radius: var(--radius);
  background: #fff9d9;
  color: var(--color-text);
  text-align: center;
}

.about-gallery-placeholder.is-visible,
.about-gallery:not(:has(.about-photo)) .about-gallery-placeholder {
  display: grid;
}

.about-gallery-placeholder strong {
  font-family: var(--font-display);
  font-size: 20px;
}

.about-gallery-placeholder span {
  color: var(--color-muted);
  font-size: 14px;
}

.about-copy {
  display: grid;
  gap: 16px;
  max-width: 680px;
}

.about-copy .lead {
  margin-top: 0;
  font-size: clamp(17px, 2vw, 20px);
}

.about-body {
  display: grid;
  gap: 12px;
}

.about-body p {
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

.about-signature {
  display: grid;
  gap: 2px;
  margin-top: 4px;
}

.about-signature strong {
  font-family: var(--font-display);
  font-size: 20px;
}

.about-signature span {
  color: var(--color-muted);
  font-size: 14px;
}

.about-whatsapp {
  gap: 10px;
  border-color: #25d366;
  background: #25d366;
  color: #fff;
  box-shadow: 5px 5px 0 #128c7e;
}

.about-whatsapp img {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  filter: brightness(0) invert(1);
}

.about-whatsapp:hover {
  box-shadow: 6px 6px 0 #128c7e;
}

.prices {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 260px;
  padding: 26px 22px;
}

.price-card-featured {
  position: relative;
  background: var(--color-yellow);
  box-shadow: 8px 8px 0 var(--color-text);
}

.price-card-dark {
  border-color: var(--color-text);
  background: var(--color-text);
  color: #fff;
}

.price-card-dark p {
  color: #cfcfcf;
}

.price-card-dark .price {
  color: var(--color-yellow);
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--color-text);
  color: var(--color-yellow);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
}

.price {
  color: inherit;
  font-family: var(--font-display);
  line-height: .9;
  letter-spacing: -.04em;
}

.price-amount {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  line-height: .9;
  letter-spacing: -.04em;
}

.price-suffix {
  color: inherit;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
}

.included {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 22px;
  max-width: 820px;
  margin: 34px auto 0;
}

.cta-grid,
.contact-grid,
.dark-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.cta-copy {
  max-width: 520px;
  margin-left: auto;
}

.dark-grid p {
  color: #bdbdbd;
}

.steps {
  display: grid;
  gap: 14px;
}

.step-card {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
  padding: 20px;
  border-color: #2c2c2c;
  background: #1d1d1d;
}

.step-number {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-yellow);
  color: var(--color-text);
  font-family: var(--font-display);
  font-weight: 700;
}

.contact-card {
  padding: clamp(24px, 4vw, 36px);
  box-shadow: 8px 8px 0 var(--color-text);
}

.form {
  display: grid;
  gap: 15px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

label {
  display: grid;
  gap: 6px;
  color: #333;
  font-size: 13px;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #e4e4e4;
  border-radius: 12px;
  background: #fafafa;
  color: var(--color-text);
}

textarea {
  resize: vertical;
}

.trust-card {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--color-border);
  background: var(--color-soft);
}

.footer {
  margin-top: 64px;
  background: var(--color-text);
  color: #cfcfcf;
}

.footer-main,
.footer-downloads,
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 32px 0;
}

.footer-main {
  padding-top: 56px;
}

.footer a,
.footer p {
  color: #9a9a9a;
}

.footer h4 {
  color: #fff;
  margin-bottom: 14px;
}

.footer-logo {
  height: 64px;
  filter: invert(1);
}

.footer-brand {
  display: grid;
  gap: 12px;
  max-width: 300px;
  justify-items: start;
  text-align: left;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 56px;
}

.footer-list {
  display: grid;
  gap: 10px;
  font-size: 14px;
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 9px 16px;
  border: 1px solid #383838;
  border-radius: 12px;
  background: #1f1f1f;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
}

.store-link img {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.footer-border {
  border-top: 1px solid #2a2a2a;
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-main {
  flex: 1;
}

.page--register .page-main {
  background: #fff;
}

.page-topbar {
  border-bottom: 1px solid #ececea;
  background: #fff;
}

.page-topbar .nav-inner {
  min-height: 80px;
}

.page-topbar .button {
  box-shadow: none;
}

.page-section {
  padding: clamp(40px, 6vw, 72px) 0;
}

.page-hero {
  padding: clamp(44px, 7vw, 84px) 0 clamp(24px, 4vw, 40px);
  background: linear-gradient(180deg, var(--color-yellow) 0 38%, #fff 38% 100%);
}

.page-hero-content {
  display: grid;
  justify-items: start;
  gap: 12px;
  max-width: 760px;
}

.page-hero h1 {
  max-width: 760px;
}

.page-intro {
  max-width: 720px;
  font-size: clamp(17px, 2vw, 20px);
}

.page-card {
  border: 2px solid var(--color-text);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 6px 6px 0 var(--color-text);
}

.legal-card {
  padding: clamp(24px, 4vw, 40px);
}

.page-grid {
  display: grid;
  gap: 24px;
}

.page-grid-2 {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  align-items: start;
}

.technology-hero {
  padding-bottom: clamp(28px, 4vw, 48px);
}

.technology-hero-inner {
  display: flex;
  justify-content: flex-start;
}

.technology-hero-copy {
  width: 100%;
  max-width: 760px;
}

.technology-hero-copy h1 {
  margin-bottom: 0;
}

.technology-hero-copy .page-intro {
  margin-bottom: 0;
}

.technology-content {
  max-width: var(--container);
}

.technology-section {
  padding-top: 0;
}

.technology-intro {
  display: grid;
  gap: 12px;
  width: 100%;
  max-width: 760px;
}

.technology-intro h2 {
  margin-top: 0;
}

.technology-people {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.technology-person {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.technology-avatar {
  width: 84px;
  height: 84px;
  border: 3px solid var(--color-text);
  border-radius: 50%;
  overflow: hidden;
  background: #eee;
}

.technology-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.technology-person-copy {
  display: grid;
  gap: 12px;
}

.technology-person-copy h2 {
  margin-top: 0;
  margin-bottom: 0;
}

.legal-section {
  padding-top: 0;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
}

.register-hero {
  background: #fff;
  padding-bottom: clamp(40px, 6vw, 72px);
}

.register-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}

.register-hero-copy {
  display: grid;
  gap: 18px;
  width: 100%;
  max-width: 760px;
  justify-items: start;
  text-align: left;
}

.register-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.register-trust p {
  color: #666;
  font-size: 14px;
}

.register-form-shell {
  margin-top: 0;
  width: min(100%, 420px);
  max-width: 420px;
  justify-self: end;
  align-self: start;
}

.register-form-area {
  display: grid;
  gap: 10px;
  width: min(100%, 420px);
  justify-self: center;
}

.register-form {
  gap: 18px;
}

.register-complete-grid {
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  align-items: start;
}

.register-complete-area {
  width: min(100%, 640px);
  justify-self: end;
}

.register-support-copy {
  margin: 6px 0 0;
  color: #5f5f5f;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.register-complete-card {
  width: 100%;
  max-width: none;
  justify-self: stretch;
}

.register-complete-card h2 {
  margin-bottom: 14px;
  font-size: 24px;
}

.register-fieldset {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  border: 0;
}

.register-fieldset:disabled {
  opacity: .62;
}

.register-full-row {
  grid-column: 1 / -1;
}

.register-status {
  min-height: 22px;
  margin-top: 8px;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.register-status-success {
  color: #0d7a20;
}

.register-status-error {
  color: #b00020;
}

.register-status-info {
  color: #3d3d3d;
}

.register-input-valid {
  border-color: #0d7a20 !important;
  box-shadow: 0 0 0 2px rgba(13, 122, 32, .16);
}

.register-input-invalid {
  border-color: #b00020 !important;
  box-shadow: 0 0 0 2px rgba(176, 0, 32, .14);
}

.register-btn-loading {
  pointer-events: none;
  opacity: .9;
}

.lead-dialog-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, .44);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.lead-dialog-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.lead-dialog {
  width: min(100%, 460px);
  padding: 26px;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .22);
  text-align: center;
}

.lead-dialog h2 {
  margin-bottom: 10px;
  font-size: 24px;
}

.lead-dialog p {
  margin-bottom: 12px;
  color: #333;
  line-height: 1.55;
}

.lead-dialog-help {
  font-size: 14px;
  opacity: .78;
}

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

.prose {
  color: var(--color-text);
}

.prose h2 {
  margin-top: 28px;
  margin-bottom: 14px;
  font-size: 22px;
}

.prose h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 18px;
}

.prose p,
.prose li {
  color: #333;
  font-size: 16px;
  line-height: 1.68;
}

.prose p + p,
.prose ul + p,
.prose h2 + p,
.prose h3 + p {
  margin-top: 10px;
}

.prose ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.prose li + li {
  margin-top: 8px;
}

.form-shell {
  padding: clamp(24px, 4vw, 36px);
}

.form-stack {
  display: grid;
  gap: 16px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #e4e4e4;
  border-radius: 12px;
  background: #fafafa;
  color: var(--color-text);
}

.field input[readonly] {
  background: #f1f1f1;
  color: #666;
  cursor: not-allowed;
}

.field textarea {
  resize: vertical;
}

.field-label {
  color: #333;
  font-size: 13px;
  font-weight: 600;
}

.field-help {
  color: #777;
  font-size: 13px;
  line-height: 1.5;
}

.form-note {
  color: #666;
  font-size: 13px;
  line-height: 1.5;
}

.notice {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #fff6cc;
  border: 1px solid #ffe680;
  color: #5f4700;
  font-size: 14px;
}

.notice strong {
  color: var(--color-text);
}

.status-box {
  padding: 14px 16px;
  border-radius: 14px;
  background: #fafafa;
  border: 1px solid #ececea;
  color: #333;
  font-size: 14px;
  line-height: 1.5;
}

.status-box strong {
  color: var(--color-text);
}

.status-success {
  background: #edf9f0;
  border-color: #bfe8c8;
}

.status-error {
  background: #fff0f0;
  border-color: #f3c1c1;
}

.status-info {
  background: #eef6ff;
  border-color: #c5dbff;
}

.metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.mt-24 {
  margin-top: 24px;
}

.gap-16 {
  gap: 16px;
}

.metric {
  flex: 1 1 180px;
  display: grid;
  gap: 4px;
  padding: 18px;
  border-radius: 16px;
  background: var(--color-soft);
  border: 1px solid var(--color-border);
}

.metric strong {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--color-text);
}

.metric span {
  color: #666;
  font-size: 13px;
}

.page-footer {
  background: #141414;
  color: #cfcfcf;
}

.page-footer .footer-main,
.page-footer .footer-downloads,
.page-footer .footer-bottom {
  padding-top: 28px;
  padding-bottom: 28px;
}

.page-footer .footer-logo {
  height: 76px;
}

.page-footer .footer-brand {
  gap: 12px;
  justify-items: start;
  text-align: left;
}

@media (max-width: 980px) {
  .hero,
  .cta-grid,
  .contact-grid,
  .dark-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

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

  .spotlight-image {
    display: none;
  }

  .cta-copy {
    margin-left: 0;
  }

  .page-grid-2,
  .page-grid-3,
  .field-grid,
  .technology-people,
  .register-hero-grid {
    grid-template-columns: 1fr;
  }

  .technology-person {
    grid-template-columns: 1fr;
  }

  .register-hero-copy,
  .register-form-shell {
    max-width: 100%;
  }

  .register-form-shell {
    justify-self: stretch;
  }

  .register-form-area {
    width: 100%;
    justify-self: stretch;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .nav-inner,
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-inner {
    padding: 14px 0;
  }

  .hero {
    min-height: calc(100svh - 104px);
    padding-top: 38px;
  }

  .register-hero {
    background: #fff;
  }

  .grid-3,
  .grid-4,
  .prices,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
  }

  .logo-track {
    animation-duration: 18s;
  }

  .page-hero {
    background: linear-gradient(180deg, var(--color-yellow) 0 30%, #fff 30% 100%);
  }

  .register-hero {
    background: #fff;
  }

  .page-topbar .nav-inner {
    min-height: 72px;
  }

  .page-footer .footer-brand {
    gap: 10px;
  }

  .page-footer .footer-logo {
    height: 66px;
  }
}

@media (max-width: 720px) {
  body {
    text-align: center;
  }

  .section {
    padding: 48px 0;
  }

  .section-header {
    margin-bottom: 30px;
  }

  .section-header,
  .hero-copy,
  .about-copy,
  .cta-copy,
  .dark-grid > div,
  .spotlight-content,
  .technology-hero-copy,
  .technology-intro,
  .register-hero-copy,
  .page-hero-content {
    max-width: 100%;
    justify-items: center;
    text-align: center;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(38px, 12vw, 52px);
    line-height: .98;
  }

  h2 {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.02;
  }

  h3 {
    font-size: 22px;
  }

  p,
  .prose p,
  .prose li {
    font-size: 16px;
    line-height: 1.55;
  }

  .lead,
  .page-intro {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
    line-height: 1.48;
  }

  .button {
    width: 100%;
    min-height: 54px;
    padding: 14px 20px;
    font-size: 17px;
  }

  .nav-inner {
    gap: 14px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    gap: 14px;
    font-size: 14px;
  }

  .nav .button,
  .page-topbar .button {
    width: auto;
    min-height: 44px;
    padding: 10px 18px;
    font-size: 15px;
  }

  .logo {
    height: 38px;
  }

  .hero {
    gap: 22px;
    min-height: calc(100svh - 104px);
    padding-top: 30px;
    text-align: center;
  }

  .hero-media {
    width: min(100%, 340px);
    max-width: 100%;
    justify-self: center;
  }

  .actions,
  .checks,
  .rating,
  .register-trust,
  .store-links,
  .included {
    justify-content: center;
  }

  .actions {
    width: 100%;
    margin-top: 24px;
  }

  .checks {
    gap: 8px 12px;
  }

  .value-strip {
    gap: 10px;
    padding: 22px 0;
    font-size: 17px;
  }

  .grid {
    gap: 18px;
  }

  .feature,
  .about-copy,
  .about-signature,
  .sector-body,
  .trust-card,
  .contact-card,
  .step-card,
  .technology-person,
  .technology-person-copy,
  .footer-brand {
    justify-items: center;
    text-align: center;
  }

  .icon,
  .feature-icon,
  .trust-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }

  .sector-card,
  .price-card,
  .trust-card,
  .contact-card,
  .step-card,
  .page-card {
    border-radius: 16px;
    box-shadow: 4px 4px 0 var(--color-text);
  }

  .sector-card {
    box-shadow: 4px 4px 0 var(--color-yellow);
  }

  .sector-card img {
    height: 180px;
  }

  .sector-body {
    padding: 24px 20px;
  }

  .about-media {
    display: flex;
    justify-content: center;
  }

  .about-mobile-heading {
    display: grid;
    gap: 10px;
    justify-items: center;
    text-align: center;
  }

  .about-desktop-heading {
    display: none;
  }

  .about-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
  }

  .about-photo {
    box-shadow: 5px 5px 0 var(--color-yellow);
  }

  .about-photo:hover {
    transform: none;
    box-shadow: 5px 5px 0 var(--color-yellow);
  }

  .about-photo-1 {
    grid-row: auto;
  }

  .gallery-lightbox {
    padding: 14px;
  }

  .gallery-lightbox-panel {
    width: 100%;
  }

  .gallery-lightbox-image {
    max-height: 72vh;
    border-radius: 14px;
  }

  .gallery-lightbox-close {
    top: -12px;
    right: -6px;
    width: 42px;
    height: 42px;
  }

  .gallery-lightbox-nav {
    top: auto;
    bottom: -64px;
    width: 48px;
    height: 48px;
    font-size: 36px;
    transform: none;
  }

  .gallery-lightbox-prev {
    left: calc(50% - 58px);
  }

  .gallery-lightbox-next {
    right: calc(50% - 58px);
  }

  .gallery-lightbox-caption {
    margin-bottom: 58px;
  }

  .about-body {
    justify-items: center;
  }

  .about-body p {
    font-size: 16px;
    line-height: 1.55;
  }

  .prices {
    gap: 20px;
  }

  .price-card {
    align-items: center;
    min-height: 0;
    padding: 28px 22px;
    text-align: center;
  }

  .price-card-featured {
    box-shadow: 5px 5px 0 var(--color-text);
  }

  .price {
    line-height: .86;
  }

  .price-amount {
    font-size: clamp(54px, 17vw, 76px);
    line-height: .82;
  }

  .price-card-dark .price-amount {
    font-size: clamp(38px, 11vw, 54px);
    line-height: .95;
    letter-spacing: 0;
  }

  .price-suffix {
    display: block;
    margin-top: 8px;
    font-size: 19px;
  }

  .badge {
    align-self: center;
    font-size: 13px;
  }

  .price-card .button {
    max-width: 280px;
  }

  .cta-grid,
  .contact-grid,
  .dark-grid {
    gap: 28px;
    text-align: center;
  }

  .cta-copy {
    margin: 0 auto;
  }

  .step-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }

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

  .step-number {
    width: 44px;
    height: 44px;
  }

  .contact-card,
  .form-shell,
  .legal-card {
    padding: 22px;
  }

  .form,
  .form-stack,
  .field,
  label {
    text-align: left;
  }

  input,
  textarea,
  .field input,
  .field textarea,
  .field select {
    min-height: 52px;
    padding: 14px 15px;
    font-size: 16px;
  }

  .form-note,
  .field-help,
  .register-support-copy {
    text-align: center;
  }

  .contact-card .form {
    text-align: center;
  }

  .page-hero {
    padding-top: 34px;
    padding-bottom: 28px;
  }

  .page-topbar .nav-inner {
    justify-content: space-between;
  }

  .register-hero-grid,
  .register-complete-grid {
    gap: 26px;
  }

  .register-form-area,
  .register-complete-area {
    justify-self: stretch;
    width: 100%;
  }

  .register-form-shell,
  .register-complete-card {
    width: 100%;
    max-width: none;
  }

  .register-complete-card h2 {
    text-align: center;
  }

  .register-status {
    text-align: center;
  }

  .footer {
    margin-top: 44px;
  }

  .footer-main,
  .footer-downloads,
  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-links {
    width: 100%;
    justify-content: center;
    gap: 28px;
  }

  .footer-downloads h4,
  .store-links {
    width: 100%;
    justify-content: center;
  }

  .store-link {
    width: min(100%, 280px);
    justify-content: center;
    min-height: 50px;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  h1 {
    font-size: clamp(34px, 11vw, 46px);
  }

  h2 {
    font-size: clamp(28px, 8.5vw, 36px);
  }

  .section {
    padding: 42px 0;
  }

  .nav .button,
  .page-topbar .button {
    padding-left: 14px;
    padding-right: 14px;
  }

  .price-amount {
    font-size: clamp(50px, 18vw, 68px);
  }

  .contact-card,
  .form-shell,
  .legal-card {
    padding: 20px;
  }

  .footer-links {
    display: grid;
    gap: 24px;
  }
}

@keyframes sponsor-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
