:root {
  --font-14px: clamp(14px, 0.731vw, 16px);
  --font-16px: clamp(14px, 0.833vw, 20px);
  --font-18px: clamp(16px, 0.957vw, 24px);
  --font-20px: clamp(16px, 1.041vw, 20px);
  --font-21px: clamp(16px, 1.109vw, 24px);
  --font-22px: clamp(16px, 1.145vw, 26px);
  --font-23px: clamp(16px, 1.197vw, 26px);
  --font-24px: clamp(16px, 1.250vw, 28px);
  --font-26px: clamp(16px, 1.354vw, 30px);
  --font-27px: clamp(17px, 1.42vw, 33px);
  --font-30px: clamp(18px, 1.562vw, 30px);
  --font-32px: clamp(18px, 1.666vw, 37px);
  --font-34px: clamp(20px, 1.770vw, 34px);
  --font-36px: clamp(20px, 1.875vw, 36px);
  --font-37px: clamp(20px, 1.93vw, 37px);
  --font-40px: clamp(22px, 2.084vw, 40px);
  --font-45px: clamp(20px, 2.346vw, 50px);
  --font-50px: clamp(24px, 2.604vw, 50px);
  --font-53px: clamp(24px, 2.760vw, 59px);
  --font-60px: clamp(26px, 3.125vw, 60px);
  --font-64px: clamp(28px, 3.333vw, 70px);
  --font-72px: clamp(30px, 3.750vw, 80px);
  --font-80px: clamp(28px, 4.166vw, 80px);
  --font-90px: clamp(28px, 4.687vw, 90px);
  --font-122px: clamp(32px, 6.354vw, 122px);
  --font-150px: clamp(60px, 7.813vw, 150px);

  --color-white: #ffffff;
  --color-text: #434655;
  --color-text-muted: #434655;
  --color-primary: #004ac6;
  --color-border: #c5d4ff;
  --header-pad-x: clamp(16px, 4vw, 80px);
  --header-pad-y: clamp(10px, 1vw, 16px);
  --logo-size: clamp(52px, 4.2vw, 80px);
  --nav-gap: clamp(20px, 2.5vw, 40px);
  --cta-pad-y: clamp(10px, 0.73vw, 14px);
  --cta-pad-x: clamp(18px, 1.56vw, 28px);
  --layout-max: 1440px;
}

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

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;
  font-size: var(--font-16px);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  min-width: 100%;
  overflow-x: hidden;
  padding-top: clamp(64px, 5vw, 88px);
}

main {
  width: 100%;
}

/* Shared centered page container */
.site-header__inner,
.hero__inner,
.buildForLocal__inner,
.whyJobsGigs__inner,
.builtForEveryone__inner,
.appComingSoon__inner,
.earlyAccess__inner {
  width: 100%;
  max-width: var(--layout-max);
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

/* Full-bleed section shells (backgrounds go edge-to-edge) */
.site-header,
.hero,
.buildForLocal,
.whyJobsGigs,
.builtForEveryone,
.appComingSoon,
.earlyAccess,
main {
  width: 100%;
  max-width: none;
}

.hero,
.buildForLocal,
.whyJobsGigs,
.builtForEveryone,
.appComingSoon,
.earlyAccess {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
}

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

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

/* ??? Header ??? */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(197, 212, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(12px, 2vw, 32px);
  padding: var(--header-pad-y) var(--header-pad-x);
}

.site-header__logo {
  justify-self: start;
  flex-shrink: 0;
}

.site-header__logo img {
  width: var(--logo-size);
  height: var(--logo-size);
  object-fit: contain;
  border-radius: 12px;
}

.site-header__nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: var(--nav-gap);
  justify-self: center;
}

.site-header__link {
  font-family: "Inter", sans-serif;
  font-size: var(--font-16px);
  font-weight: 500;
  color: var(--color-text-muted);
  white-space: nowrap;
  transition: color 0.2s ease;
}

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

.site-header__cta {
  display: none;
  justify-self: end;
  flex-shrink: 0;
  font-family: "Inter", sans-serif;
  font-size: var(--font-16px);
  font-weight: 600;
  color: var(--color-white);
  background: var(--color-primary);
  padding: var(--cta-pad-y) var(--cta-pad-x);
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}

.site-header__cta:hover,
.site-header__cta:focus-visible {
  background: #003a9e;
}

.site-header__cta:active {
  transform: scale(0.98);
}

.site-header__menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: none;
  background: transparent;
  cursor: pointer;
  justify-self: end;
  grid-column: 3;
}

.site-header__menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header__menu-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header__menu-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.site-header__menu-btn[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-header__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px var(--header-pad-x) 20px;
  border-top: 1px solid var(--color-border);
}

.site-header__mobile.is-open {
  display: flex;
}

.site-header__mobile .site-header__link {
  padding: 12px 0;
  font-size: var(--font-18px);
}

.site-header__cta--mobile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  width: fit-content;
  justify-self: start;
}

/* ??? Hero ??? */
.hero {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  background-image: linear-gradient(
    115.69deg,
    #ffffff 34.23%,
    #477dd7 63.78%,
    #004ac6 93.33%
  );
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: clamp(40px, 5vw, 64px);
  padding:
    clamp(36px, 4vw, 60px)
    var(--header-pad-x)
    clamp(48px, 6vw, 96px);
}

.hero__content {
  max-width: 560px;
  padding-top: clamp(12px, 1.5vw, 28px);
}

.hero__title {
  font-family: "Inter", sans-serif;
  font-size: var(--font-53px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #1a1a2e;
  margin-bottom: clamp(16px, 1.5vw, 24px);
}

.hero__title-accent {
  color: var(--color-primary);
}

.hero__text {
  font-family: "Inter", sans-serif;
  font-size: var(--font-18px);
  font-weight: 400;
  line-height: 1.65;
  color: #516070;
  margin-bottom: clamp(10px, 0.9vw, 14px);
}

.hero__text:last-of-type {
  margin-bottom: clamp(18px, 1.5vw, 28px);
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-size: var(--font-14px);
  font-weight: 600;
  color: var(--color-white);
  background: var(--color-primary);
  padding: clamp(10px, 0.75vw, 14px) clamp(18px, 1.5vw, 26px);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 74, 198, 0.28);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.hero__cta:hover,
.hero__cta:focus-visible {
  background: #003a9e;
  box-shadow: 0 10px 28px rgba(0, 74, 198, 0.35);
}

.hero__cta:active {
  transform: scale(0.98);
}

.hero__visual {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
  aspect-ratio: 1 / 0.92;
}

.hero__circle {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 74, 198, 0.18);
}

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

.hero__circle--small {
  width: 62%;
  aspect-ratio: 1;
  top: -4%;
  left: -8%;
  z-index: 3;
}

.hero__circle--big {
  width: 86%;
  aspect-ratio: 1;
  top: 0;
  right: -10%;
  z-index: 2;
}

.hero__badge {
  position: absolute;
  bottom: 2%;
  right: auto;
  left: 12%;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: clamp(12px, 1vw, 16px);
  background: var(--color-white);
  padding: clamp(14px, 1.2vw, 20px) clamp(16px, 1.4vw, 24px);
  border-radius: 16px;
  box-shadow: 0 10px 32px rgba(0, 40, 120, 0.16);
  min-width: clamp(220px, 22vw, 280px);
}

.hero__badge-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: clamp(48px, 4vw, 60px);
  height: clamp(48px, 4vw, 60px);
  border-radius: 50%;
  background: #e8f0ff;
  overflow: hidden;
}

.hero__badge-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.hero__badge-title {
  font-family: "Inter", sans-serif;
  font-size: var(--font-16px);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.25;
}

.hero__badge-sub {
  font-family: "Inter", sans-serif;
  font-size: var(--font-14px);
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.3;
  margin-top: 2px;
}

/* ??? Built for Local ??? */
.buildForLocal {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      ellipse 55% 70% at 100% 0%,
      rgba(71, 125, 215, 0.22) 0%,
      rgba(0, 74, 198, 0.08) 45%,
      transparent 70%
    ),
    #ffffff;
}

.buildForLocal__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: clamp(32px, 4vw, 64px);
  padding:
    clamp(48px, 6vw, 96px)
    var(--header-pad-x);
}

.buildForLocal__media {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin-inline: auto;
}

.buildForLocal__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0 28px 28px 0;
  box-shadow: 0 20px 50px rgba(0, 40, 120, 0.14);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.buildForLocal__content {
  max-width: 560px;
}

.buildForLocal__title {
  font-family: "Inter", sans-serif;
  font-size: var(--font-40px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1a1a2e;
  margin-bottom: clamp(16px, 1.5vw, 24px);
}

.buildForLocal__title-accent {
  color: var(--color-primary);
}

.buildForLocal__text {
  font-family: "Inter", sans-serif;
  font-size: var(--font-16px);
  font-weight: 400;
  line-height: 1.65;
  color: #516070;
  margin-bottom: clamp(12px, 1vw, 16px);
}

.buildForLocal__quote {
  margin: clamp(20px, 2vw, 28px) 0;
  padding: clamp(14px, 1.2vw, 20px) clamp(16px, 1.4vw, 22px);
  border: 1px solid #d8dee8;
  border-left: 4px solid var(--color-primary);
  border-radius: 0;
  background: #ffffff;
}

.buildForLocal__quote p {
  font-family: "Inter", sans-serif;
  font-size: var(--font-16px);
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  color: #191c1d;
}

.buildForLocal__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-size: var(--font-16px);
  font-weight: 500;
  color: var(--color-white);
  background: var(--color-primary);
  padding: clamp(12px, 0.9vw, 16px) clamp(22px, 1.8vw, 32px);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 74, 198, 0.28);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.buildForLocal__cta:hover,
.buildForLocal__cta:focus-visible {
  background: #003a9e;
  box-shadow: 0 10px 28px rgba(0, 74, 198, 0.35);
}

.buildForLocal__cta:active {
  transform: scale(0.98);
}

/* ??? Why Jobs & Gigs ??? */
.whyJobsGigs {
  position: relative;
  background: #f8f9fa;
}

.whyJobsGigs__inner {
  position: relative;
  z-index: 1;
  padding:
    clamp(48px, 6vw, 96px)
    var(--header-pad-x);
}

.whyJobsGigs__header {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: clamp(32px, 4vw, 56px);
}

.whyJobsGigs__title {
  font-family: "Inter", sans-serif;
  font-size: var(--font-40px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1a1a2e;
  margin-bottom: clamp(10px, 1vw, 16px);
}

.whyJobsGigs__subtitle {
  font-family: "Inter", sans-serif;
  font-size: var(--font-18px);
  font-weight: 400;
  line-height: 1.5;
  color: #516070;
}

.whyJobsGigs__grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding-bottom: 8px;
}

.whyJobsGigs__card {
  flex: 0 0 min(78%, 280px);
  scroll-snap-align: start;
  background: #ffffff;
  border: 1px solid #e8ecf1;
  border-radius: 20px;
  padding: clamp(20px, 2vw, 32px);
  box-shadow: 0 4px 16px rgba(25, 28, 29, 0.04);
}

.whyJobsGigs__icon {
  width: fit-content;
  height: auto;
  margin-bottom: clamp(14px, 1.2vw, 20px);
  line-height: 0;
}

.whyJobsGigs__icon img {
  width: auto;
  height: auto;
  max-width: none;
  display: block;
}

.whyJobsGigs__card-title {
  font-family: "Inter", sans-serif;
  font-size: var(--font-20px);
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a2e;
  margin-bottom: clamp(8px, 0.7vw, 12px);
}

.whyJobsGigs__card-text {
  font-family: "Inter", sans-serif;
  font-size: var(--font-16px);
  font-weight: 400;
  line-height: 1.55;
  color: #516070;
}

/* ??? Built for Everyone ??? */
.builtForEveryone {
  position: relative;
  z-index: 1;
  overflow: visible;
  background: linear-gradient(180deg, #004ac6 0%, #002460 100%);
}

.builtForEveryone__inner {
  position: relative;
  z-index: 1;
  padding:
    clamp(48px, 6vw, 96px)
    var(--header-pad-x);
}

.builtForEveryone__header {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: clamp(32px, 4vw, 56px);
}

.builtForEveryone__title {
  font-family: "Inter", sans-serif;
  font-size: var(--font-40px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: clamp(10px, 1vw, 16px);
}

.builtForEveryone__title-accent {
  font-weight: 700;
}

.builtForEveryone__subtitle {
  font-family: "Inter", sans-serif;
  font-size: var(--font-18px);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.builtForEveryone__grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding-bottom: 8px;
}

.builtForEveryone__card {
  flex: 0 0 min(78%, 260px);
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid #ffffff33;
  border-radius: 20px;
  padding: clamp(20px, 2vw, 28px);
}

.builtForEveryone__icon {
  width: fit-content;
  height: auto;
  margin-bottom: clamp(14px, 1.2vw, 20px);
  line-height: 0;
}

.builtForEveryone__icon img {
  width: auto;
  height: auto;
  max-width: none;
  display: block;
}

.builtForEveryone__card-title {
  font-family: "Inter", sans-serif;
  font-size: var(--font-20px);
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: clamp(8px, 0.7vw, 12px);
}

.builtForEveryone__card-text {
  font-family: "Inter", sans-serif;
  font-size: var(--font-16px);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

/* ??? App Coming Soon ??? */
.appComingSoon {
  position: relative;
  z-index: 2;
  overflow: visible;
  background-color: #ffffff;
  background-image:
    linear-gradient(to right, #004ac6 -164.36%, #ffffff 98.69%),
    linear-gradient(to left, #004ac6 -164.36%, #ffffff 98.69%);
  background-repeat: no-repeat, no-repeat;
  background-size: 8% 100%, 8% 100%;
  background-position: left center, right center;
  border-top: 3px solid #004ac6;
  border-bottom: none;
}

.appComingSoon__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  padding:
    clamp(24px, 3vw, 40px)
    var(--header-pad-x);
  overflow: visible;
}

.appComingSoon__content {
  max-width: 520px;
  position: relative;
  z-index: 1;
  margin-left: clamp(12px, 2vw, 40px);
}

.appComingSoon__title {
  font-family: "Inter", sans-serif;
  font-size: var(--font-45px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #1a1a2e;
  margin-bottom: clamp(12px, 1.1vw, 18px);
  white-space: nowrap;
}

.appComingSoon__title-accent {
  font-weight: 700;
}

.appComingSoon__text {
  font-family: "Inter", sans-serif;
  font-size: var(--font-24px);
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  margin-bottom: clamp(10px, 1vw, 16px);
  max-width: 42ch;
}

.appComingSoon__stores {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: clamp(12px, 1.4vw, 20px);
}

.appComingSoon__store {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.appComingSoon__store-img {
  display: block;
  width: auto;
  height: clamp(38px, 3.2vw, 48px);
  max-width: none;
}

.appComingSoon__store-label {
  font-family: "Inter", sans-serif;
  font-size: var(--font-14px);
  font-weight: 400;
  color: #8a93a3;
}

.appComingSoon__media {
  position: relative;
  z-index: 3;
  width: fit-content;
  max-width: none;
  margin-inline: auto;
  margin-bottom: clamp(-48px, -6vw, -28px);
  line-height: 0;
}

.appComingSoon__media img {
  width: clamp(360px, 30vw, 560px);
  height: auto;
  max-width: none;
  max-height: none;
  display: block;
  object-fit: contain;
}

/* ??? Get Early Access ??? */
.earlyAccess {
  position: relative;
  z-index: 1;
  overflow: visible;
  background: linear-gradient(100.49deg, #0034bc 5.58%, #011767 57.99%, #1967e9 110.39%);
}

.earlyAccess__inner {
  position: relative;
  z-index: 1;
  padding:
    clamp(48px, 6vw, 88px)
    var(--header-pad-x);
}

.earlyAccess__header {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: clamp(28px, 3vw, 44px);
}

.earlyAccess__title {
  font-family: "Inter", sans-serif;
  font-size: var(--font-50px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: clamp(10px, 1vw, 16px);
}

.earlyAccess__title-accent {
  font-weight: 700;
}

.earlyAccess__subtitle {
  font-family: "Inter", sans-serif;
  font-size: var(--font-24px);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  white-space: nowrap;
}

.earlyAccess__subtitle-accent {
  font-weight: 700;
}

.earlyAccess__form {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  background: #ffffff;
  border-radius: 24px;
  padding: clamp(32px, 3.8vw, 56px);
  display: grid;
  gap: clamp(18px, 2vw, 24px);
}

.earlyAccess__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2vw, 24px);
}

.earlyAccess__field {
  position: relative;
  display: block;
}

.earlyAccess__label {
  position: absolute;
  top: 0;
  left: 14px;
  transform: translateY(-50%);
  padding: 0 6px;
  background: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: var(--font-18px);
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1;
  z-index: 1;
}

.earlyAccess__input,
.earlyAccess__select,
.earlyAccess__textarea {
  width: 100%;
  font-family: "Inter", sans-serif;
  font-size: var(--font-16px);
  font-weight: 400;
  color: #1a1a2e;
  background: #ffffff;
  border: 1px solid #d0d5dd;
  border-radius: 12px;
  padding: 16px 16px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.earlyAccess__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2064748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.earlyAccess__input::placeholder,
.earlyAccess__textarea::placeholder {
  color: #98a2b3;
}

.earlyAccess__input:focus,
.earlyAccess__select:focus,
.earlyAccess__textarea:focus {
  border-color: #004ac6;
  box-shadow: 0 0 0 3px rgba(0, 74, 198, 0.12);
}

.earlyAccess__textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

.earlyAccess__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  margin-top: 4px;
  font-family: "Inter", sans-serif;
  font-size: var(--font-16px);
  font-weight: 600;
  color: #ffffff;
  background: #004ac6;
  border: none;
  border-radius: 999px;
  padding: clamp(12px, 0.9vw, 14px) clamp(28px, 2.5vw, 40px);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.earlyAccess__submit:hover,
.earlyAccess__submit:focus-visible {
  background: #003a9e;
}

.earlyAccess__submit:active {
  transform: scale(0.98);
}

/* Footer */
.siteFooter {
  width: 100%;
  background: #1f2425;
  border-top: 4px solid #004ac6;
}

.siteFooter__inner {
  width: 100%;
  max-width: var(--layout-max);
  margin-inline: auto;
  padding: clamp(48px, 5vw, 80px) var(--header-pad-x);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 2vw, 32px);
  align-items: center;
}

.siteFooter__brand {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.8vw, 28px);
}

.siteFooter__logo {
  width: clamp(80px, 6vw, 120px);
  height: clamp(80px, 6vw, 120px);
  object-fit: contain;
  border-radius: 14px;
  flex-shrink: 0;
}

.siteFooter__title {
  font-family: "Inter", sans-serif;
  font-size: var(--font-40px);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 6px;
}

.siteFooter__desc {
  font-family: "Inter", sans-serif;
  font-size: var(--font-16px);
  font-weight: 400;
  line-height: 1.5;
  color: #aeb7be;
  max-width: 44ch;
}

.siteFooter__meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.siteFooter__links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 2vw, 28px);
}

.siteFooter__links a {
  font-family: "Inter", sans-serif;
  font-size: var(--font-14px);
  font-weight: 400;
  color: #d4d9de;
  text-decoration: none;
}

.siteFooter__links a:hover {
  color: #ffffff;
}

.siteFooter__copyright {
  font-family: "Inter", sans-serif;
  font-size: var(--font-14px);
  font-weight: 400;
  color: #8f9aa3;
}


