:root {
  --page-bg: #000000;
  --surface: #f7f9fc;
  --white: #ffffff;
  --ink: #0f172a;
  --muted: #475569;
  --soft: #94a3b8;
  --line: rgba(15, 23, 42, 0.08);
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-soft: rgba(37, 99, 235, 0.08);
  --green: #05b133;
  --yellow: #f3c51c;
  --shadow: 0 24px 70px rgba(37, 99, 235, 0.08);
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--page-bg);
  color: var(--ink);
  text-rendering: geometricPrecision;
}

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

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

button,
input {
  font: inherit;
}

.landing-page {
  padding: 0;
}

.page-shell {
  width: 100%;
  min-height: 3632px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--surface);
}

.site-header {
  position: relative;
  z-index: 20;
  height: 71px;
  background: #ffffff;
}

.header-inner {
  width: 1000px;
  height: 71px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hamburger-btn {
  display: none;
  border: 0;
  appearance: none;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  padding: 0;
}

.hamburger-btn span {
  width: 18px;
  height: 2px;
  display: block;
  border-radius: 99px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  color: #152234;
}

.brand-mark {
  position: relative;
  display: inline-flex;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #1d5df2 0%, #2868f3 54%, #1647d8 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.brand-mark::after {
  content: "";
  position: absolute;
  top: -2px;
  right: -1px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #7fb7ea;
  border: 2px solid var(--surface);
}

.brand-check {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--white);
}

.brand-check::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 6px;
  width: 9px;
  height: 5px;
  border-left: 3px solid var(--blue);
  border-bottom: 3px solid var(--blue);
  transform: rotate(-45deg);
}

.brand-name {
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 379px;
  gap: 0;
  font-family: "Sora", sans-serif;
  font-size: 12px;
  color: var(--muted);
}

.top-nav > a:not(.login-btn) {
  display: inline-flex;
  align-items: center;
  height: 23px;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.top-nav > a:nth-child(1) {
  width: 103px;
}

.top-nav > a:nth-child(2) {
  width: 62px;
  margin-left: 30px;
}

.login-btn {
  display: inline-flex;
  width: 103px;
  height: 35px;
  margin-left: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.35);
  font-size: 10px;
  line-height: 13px;
}

.hero-section {
  position: relative;
  display: flex;
  min-height: 637px;
  align-items: flex-start;
  justify-content: center;
  padding-top: 73px;
}

.hero-glow {
  position: absolute;
  inset: -30px 0 auto;
  height: 519px;
  background: radial-gradient(70.71% 70.71% at 50% 50%, rgba(59, 130, 246, 0.12) 0%, rgba(59, 130, 246, 0) 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 713px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.market-badge {
  display: inline-flex;
  height: 33px;
  align-items: center;
  gap: 10px;
  padding: 5px 15px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 50px;
  background: rgba(59, 130, 246, 0.1);
  font-family: "Sora", sans-serif;
  font-size: 10px;
  line-height: 19px;
  color: var(--blue-dark);
}

.flag-stack {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.flag-stack img {
  width: 18px;
  height: 12px;
  border-radius: 0;
  object-fit: contain;
}

.badge-text {
  min-width: 0;
}

.hero-content h1 {
  margin: 19px 0 33px;
  font-family: "Sora", sans-serif;
  font-size: 0;
  font-weight: 700;
  line-height: 0;
  letter-spacing: 0;
}

.hero-line {
  display: block;
  font-size: 46px;
  line-height: 60px;
  white-space: nowrap;
}

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

.hero-content p {
  width: 710px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 31px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 12px;
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 19px;
  white-space: nowrap;
}

.btn > .btn-arrow {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.btn > .btn-arrow svg {
  width: 16px;
  height: 16px;
  display: block;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-primary {
  width: 232px;
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 1px 1px rgba(15, 23, 42, 0.08);
}

.btn-secondary {
  width: 178px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.25);
  color: var(--muted);
  font-weight: 400;
  line-height: 24px;
}

.stats-grid {
  width: 567px;
  margin: 29px 0 0;
  padding: 20px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.stats-grid div {
  position: relative;
  min-height: 53px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.stats-grid div + div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 1px;
  height: 32px;
  background: rgba(0, 0, 0, 0.08);
}

.stats-grid dt {
  font-family: "Sora", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 35px;
}

.stats-grid dd {
  margin: 0;
  color: var(--soft);
  font-size: 12px;
  line-height: 19px;
}

.logo-strip {
  height: 251px;
  padding-top: 53px;
  background: var(--white);
  text-align: center;
}

.logo-strip h2,
.section-heading > span,
.section-kicker,
.cta-card > span {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-dark);
}

.portal-logos {
  width: 830px;
  margin: 31px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 10px;
}

.portal-logos span {
  width: 130px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 6px;
  background: var(--white);
}

.portal-logos .logo-break {
  width: 100%;
  height: 0;
  flex-basis: 100%;
  margin-top: 0;
  border: 0;
  background: transparent;
  pointer-events: none;
}

.portal-logos img {
  max-width: 104px;
  max-height: 27px;
  object-fit: contain;
}

.portal-logos span:nth-child(1) img,
.portal-logos span:nth-child(2) img {
  max-width: 98px;
  max-height: 34px;
}

.portal-logos span:nth-child(1) img {
  width: 120px;
  height: 22px;
  max-width: none;
  max-height: none;
  object-fit: fill;
}

.portal-logos span:nth-child(2) img {
  width: 54px;
  height: 39px;
  max-width: none;
  max-height: none;
}

.portal-logos span:nth-child(7) img {
  width: 74px;
  height: 17px;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: top center;
}

.portal-logos .more-portals {
  color: var(--soft);
  font-family: "Sora", sans-serif;
  font-size: 10px;
  line-height: 16px;
}

.section-panel {
  background: linear-gradient(89.59deg, rgba(236, 241, 252, 0.7) -9.07%, rgba(233, 242, 246, 0.7) 48.42%, rgba(253, 249, 244, 0.7) 105.91%);
}

.steps-section {
  height: 652px;
  padding-top: 52px;
}

.section-heading {
  width: 700px;
  margin: 0 auto;
  text-align: center;
}

.section-heading h2 {
  margin: 26px 0 21px;
  font-family: "Sora", sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: 0;
}

.section-heading p {
  width: 510px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
  line-height: 29px;
}

.steps-grid {
  width: 884px;
  margin: 31px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 278px);
  gap: 25px;
}

.step-card {
  height: 355px;
  margin: 0;
  padding: 15px 15px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
}

.step-card img {
  width: 194px;
  height: 161px;
  margin: 0 auto 25px;
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96);
}

.step-card h3 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 29px;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 20px;
}

.audience-section {
  min-height: 849px;
  padding: 52px 0 38px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.audience-section .section-heading p {
  font-size: 17px;
}

.audience-grid {
  width: 883px;
  margin: 31px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 414px);
  gap: 55px;
}

.audience-card {
  min-height: 552px;
  padding: 30px 15px 16px;
  border-radius: 12px;
  background: var(--white);
}

.eyebrow-pill {
  display: inline-flex;
  height: 30px;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border: 1px solid rgba(37, 99, 235, 0.22);
  border-radius: 100px;
  background: var(--blue-soft);
  font-family: "Sora", sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 13px;
  letter-spacing: 1.35px;
  text-transform: uppercase;
  color: var(--blue-dark);
}

.audience-card h3 {
  margin: 10px 0 20px;
  font-family: "Sora", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 31px;
}

.audience-card > p:not(.note) {
  margin: 0 0 23px;
  color: var(--muted);
  font-size: 15px;
  line-height: 26px;
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  min-height: 36px;
  padding-left: 30px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%232563EB' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E") center / 20px 20px no-repeat;
}

.check-list li::after {
  display: none;
}

.check-list strong {
  color: var(--ink);
  font-weight: 700;
}

.card-btn {
  width: 280px;
  height: 47px;
  margin: 18px auto 12px;
  display: flex;
}

.note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  font-size: 12px;
  line-height: 16px;
}

.note span {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: "Sora", sans-serif;
  font-size: 10px;
  font-weight: 800;
  flex: 0 0 auto;
}

.geo-section {
  height: 278px;
  padding-top: 50px;
  display: grid;
  grid-template-columns: 414px 414px;
  justify-content: center;
  gap: 25px;
}

.geo-copy {
  padding: 0 15px;
}

.geo-copy h2 {
  margin: 12px 0 15px;
  font-family: "Sora", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 31px;
}

.geo-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 26px;
}

.market-grid {
  width: 414px;
  padding: 8px 15px 0;
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  align-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}

.market-chip {
  display: inline-flex;
  height: 51px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-family: "Sora", sans-serif;
  font-size: 12px;
  line-height: 22px;
  white-space: nowrap;
}

.market-chip:nth-child(1) {
  width: 118px;
}

.market-chip:nth-child(2) {
  width: 114px;
}

.market-chip:nth-child(3) {
  width: 188px;
}

.market-chip:nth-child(4) {
  width: 137px;
}

.market-chip:nth-child(5) {
  width: 164px;
}

.market-chip:nth-child(6) {
  width: 175px;
}

.market-chip img {
  width: 18px;
  height: 12px;
  border-radius: 1px;
  object-fit: cover;
}

.market-chip em {
  font-size: 8px;
  font-style: normal;
  color: #8eb7ff;
  text-transform: uppercase;
}

.market-chip i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
}

.market-chip i.active {
  background: var(--green);
}

.cta-section {
  height: 539px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 50px;
}

.cta-card {
  position: relative;
  width: 694px;
  min-height: 439px;
  padding: 72px 15px 50px;
  overflow: hidden;
  border-radius: 30px;
  background: var(--white);
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-glow {
  position: absolute;
  inset: 19px 47px auto;
  height: 400px;
  background: radial-gradient(70.71% 70.71% at 50% 50%, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0) 70%);
  pointer-events: none;
}

.cta-card > *:not(.cta-glow) {
  position: relative;
  z-index: 1;
}

.cta-card h2 {
  width: 638px;
  margin: 26px auto 22px;
  font-family: "Sora", sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 50px;
}

.cta-card p {
  width: 510px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 29px;
}

.cta-card .hero-actions {
  margin-top: 25px;
}

.footer {
  min-height: 305px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: var(--surface);
  padding: 71px 0 45px;
}

.footer-grid {
  width: 957px;
  height: 214px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 120px;
}

.footer-columns {
  width: 740px;
  height: 214px;
  display: flex;
  align-items: flex-start;
  gap: 72px;
}

.footer-columns .footer-col:nth-child(1) {
  width: 185px;
  flex: 0 0 185px;
}

.footer-columns .footer-col:nth-child(2) {
  width: 202px;
  flex: 0 0 202px;
}

.payments-col {
  width: 209px;
  flex: 0 0 209px;
}

.footer-brand {
  width: 97px;
  height: 79px;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.footer-brand .brand-mark {
  width: 52px;
  height: 52px;
}

.footer-brand .brand-name {
  font-size: 17px;
}

.footer-col h2 {
  margin: 0 0 18px;
  color: var(--soft);
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
}

.footer-col a,
.footer-col p {
  display: block;
  margin: 0 0 11px;
  color: var(--soft);
  font-size: 12px;
  line-height: 22px;
}

.footer-col p {
  margin-bottom: 20px;
  font-family: "Lexend", "DM Sans", sans-serif;
  font-size: 14px;
  line-height: 18px;
}

.payments {
  width: 209px;
  display: grid;
  grid-template-columns: 66px 67px 66px;
  gap: 9px 5px;
}

.payments span {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f2f2f2;
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.payments img {
  max-width: 50px;
  max-height: 18px;
  object-fit: contain;
}

.payments span:nth-child(4) img {
  max-width: 66px;
  max-height: 32px;
}

.payments span:nth-child(2) img {
  max-width: 32px;
  max-height: 14px;
}

.payments span:nth-child(6) img {
  width: 50px;
  height: 32px;
  max-width: none;
  max-height: none;
}

.payments span:nth-child(9) img {
  max-width: 58px;
}

.mastercard {
  position: relative;
}

.mastercard i,
.mastercard b {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: block;
}

.mastercard i {
  background: #eb001b;
  margin-right: -8px;
}

.mastercard b {
  background: #f79e1b;
  margin-left: -8px;
}

.ssl {
  margin-top: 13px !important;
  color: var(--soft) !important;
  font-family: "Sora", sans-serif !important;
  font-size: 10px !important;
  line-height: 14px !important;
}

.ssl strong {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #1baf30;
  font-size: 12px;
  line-height: 19px;
}

.ssl-lock {
  width: 11px;
  height: 11px;
  display: block;
  flex: 0 0 auto;
  fill: currentColor;
}

.copyright {
  margin: 5px 0 0;
  color: var(--soft);
  font-family: "Sora", sans-serif;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
}

.auth-page {
  --auth-scale: 1;
  --auth-left-top: 347px;
  --auth-stack-top: 277px;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 50% 50%;
  overflow-x: hidden;
  background: #f3f4f6;
  color: #111827;
}

.auth-side {
  position: relative;
  min-height: 100vh;
  background: #2563eb;
}

.auth-side-inner {
  position: absolute;
  left: 70px;
  top: 347px;
  width: 818px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

.auth-logo-card {
  width: 153px;
  height: 45px;
  margin: 0;
  justify-content: center;
  gap: 7px;
  border-radius: 12px;
  background: #ffffff;
}

.auth-logo-card .brand-mark {
  width: 25px;
  height: 25px;
}

.auth-logo-card .brand-mark::after {
  top: -1px;
  right: -1px;
  width: 7px;
  height: 7px;
  border-width: 1px;
}

.auth-logo-card .brand-check {
  width: 14px;
  height: 14px;
}

.auth-logo-card .brand-check::after {
  left: 4px;
  top: 3px;
  width: 5px;
  height: 3px;
  border-left-width: 2px;
  border-bottom-width: 2px;
}

.auth-logo-card .brand-name {
  font-size: 12px;
}

.auth-side h1 {
  width: 690px;
  margin: 0;
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 53px;
  letter-spacing: 0;
}

.auth-benefits {
  width: 818px;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 18px;
}

.auth-benefits li {
  position: relative;
  min-height: 19px;
  padding-left: 20px;
  opacity: 0.95;
}

.auth-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.5px;
  width: 12px;
  height: 13px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='13' viewBox='0 0 12 13' fill='none'%3E%3Cpath d='M2.15 6.75 4.55 9.05 9.85 3.95' stroke='%23FFFFFF' stroke-width='1.55' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 12px 13px no-repeat;
}

.auth-main {
  position: relative;
  min-height: 100vh;
  background: #f3f4f6;
}

.auth-stack {
  position: absolute;
  left: 50%;
  top: 277px;
  width: 433.41px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.auth-card {
  width: 380px;
  padding: 40px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 0;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.auth-login .auth-card {
  height: 526px;
}

.auth-register .auth-card {
  height: 630.39px;
}

.auth-card h1 {
  width: 307px;
  margin: 0 0 5px;
  color: #111827;
  font-family: "Sora", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
  letter-spacing: 0;
}

.auth-subtitle {
  width: 307px;
  margin: 0;
  color: #6b7280;
  font-family: "Sora", sans-serif;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
}

.auth-google,
.auth-submit {
  width: 307px;
  height: 42px;
  border-radius: 8px;
  cursor: pointer;
}

.auth-google {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 52px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #111827;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  white-space: nowrap;
}

.auth-login .auth-google {
  margin-top: 30px;
}

.auth-google svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.auth-divider {
  width: 291px;
  height: 13px;
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 15px 0;
  color: #9ca3af;
  font-family: "Sora", sans-serif;
  font-size: 10px;
  line-height: 13px;
  letter-spacing: 0.8px;
  text-align: center;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  width: 120px;
  height: 1px;
  background: #e5e7eb;
}

.auth-form {
  width: 307px;
  display: grid;
  gap: 16px;
}

.auth-register .auth-form {
  margin-top: 20px;
  gap: 20px;
}

.auth-field {
  width: 307px;
  display: grid;
  gap: 7px;
}

.auth-field label,
.auth-role legend {
  margin: 0;
  color: #374151;
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 15px;
}

.auth-field-header {
  width: 307px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.auth-forgot {
  color: #2563eb;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  line-height: 12px;
}

.auth-input-wrap {
  width: 307px;
  height: 42px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
}

.auth-input-wrap svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: none;
  stroke: #9ca3af;
  stroke-width: 1.2;
}

.auth-input-wrap input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #111827;
  font-family: "Sora", sans-serif;
  font-size: 12px;
  line-height: 15px;
}

.auth-input-wrap input::placeholder {
  color: #757575;
}

.auth-eye {
  margin-left: auto;
}

.auth-check-row {
  width: 300px;
  min-height: 15px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #374151;
  font-family: "Sora", sans-serif;
  font-size: 12px;
  line-height: 15px;
}

.auth-check-row input {
  width: 15px;
  height: 15px;
  margin: 0;
  flex: 0 0 auto;
  accent-color: #2563eb;
}

.auth-check-row a,
.auth-switch a,
.auth-legal a {
  color: #2563eb;
}

.auth-consent {
  width: 307px;
  display: grid;
  gap: 10px;
}

.auth-consent .auth-check-row {
  font-family: "Inter", sans-serif;
  font-size: 10.5px;
  line-height: 13px;
  letter-spacing: 0.3px;
}

.auth-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 0;
  background: #2563eb;
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
}

.auth-login .auth-submit {
  height: 43px;
}

.auth-submit .arrow {
  width: 16px;
  height: 16px;
  display: inline-block;
  flex: 0 0 auto;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none' stroke='%23FFFFFF' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3.5 8h8m-3-3 3 3-3 3'/%3E%3C/svg%3E") center / 16px 16px no-repeat;
}

.auth-switch {
  margin: 20px 0 0;
  color: #6b7280;
  font-family: "Sora", sans-serif;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
}

.auth-legal {
  width: 356px;
  margin: 0;
  color: #9ca3af;
  font-family: "Inter", sans-serif;
  text-align: center;
}

.auth-legal p {
  margin: 0;
  font-size: 12px;
  line-height: 15px;
}

.auth-login .auth-legal {
  display: grid;
  gap: 7px;
}

.auth-login .auth-legal p:first-child {
  color: #000000;
  font-size: 10.5px;
  line-height: 13px;
  letter-spacing: 0.3px;
}

.auth-role {
  width: 307px;
  margin: 0;
  padding: 0;
  border: 0;
}

.auth-role legend {
  margin-bottom: 10px;
}

.auth-role-options {
  width: 307px;
  display: flex;
  gap: 20px;
}

.auth-role-card {
  width: 143.5px;
  height: 72.39px;
  display: flex;
  align-items: center;
  padding: 10px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fafbfd;
  cursor: pointer;
}

.auth-role-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.auth-role-card span {
  width: 120.99px;
  display: grid;
  gap: 7px;
}

.auth-role-card strong {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #0f172a;
  font-family: "Sora", sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 16px;
}

.auth-role-card em {
  display: block;
  color: #94a3b8;
  font-family: "Sora", sans-serif;
  font-size: 10px;
  font-style: normal;
  line-height: 13px;
}

.auth-role-card svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: none;
  stroke: #94a3b8;
  stroke-width: 1.3;
}

.auth-role-card:has(input:checked) {
  border-color: #2563eb;
  background: rgba(37, 99, 235, 0.08);
}

.auth-role-card:has(input:checked) strong,
.auth-role-card:has(input:checked) em {
  color: #2563eb;
}

.auth-role-card:has(input:checked) svg {
  stroke: #2563eb;
}

@media (min-width: 761px) {
  .auth-page {
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
  }

  .auth-side,
  .auth-main {
    height: 100vh;
    min-height: 0;
    overflow: hidden;
  }

  .auth-side-inner {
    top: var(--auth-left-top);
    transform: scale(var(--auth-scale));
    transform-origin: left top;
  }

  .auth-stack {
    top: var(--auth-stack-top);
    transform: translateX(-50%) scale(var(--auth-scale));
    transform-origin: top center;
  }
}

@media (max-width: 1240px) {
  .landing-page {
    padding: 0;
    background: var(--surface);
  }

  .page-shell {
    width: 100%;
    min-height: 0;
  }
}

@media (max-width: 980px) {
  .header-inner,
  .footer-grid {
    width: calc(100% - 48px);
  }

  .hero-content,
  .hero-content p,
  .section-heading,
  .section-heading p,
  .cta-card h2,
  .cta-card p {
    width: min(100% - 48px, 713px);
  }

  .hero-content h1 {
    font-size: 0;
    line-height: 0;
  }

  .hero-line {
    font-size: 42px;
    line-height: 52px;
  }

  .portal-logos,
  .steps-grid,
  .audience-grid {
    width: calc(100% - 48px);
  }

  .steps-section,
  .audience-section,
  .geo-section,
  .cta-section,
  .logo-strip {
    height: auto;
    min-height: 0;
  }

  .steps-section,
  .audience-section,
  .geo-section,
  .cta-section {
    padding-bottom: 56px;
  }

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

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

  .geo-section {
    grid-template-columns: minmax(0, 414px) minmax(0, 414px);
    padding-left: 24px;
    padding-right: 24px;
  }

  .cta-card {
    width: calc(100% - 48px);
  }

  .footer-grid {
    height: auto;
    flex-wrap: wrap;
    gap: 36px;
  }

  .footer-columns {
    width: 100%;
    height: auto;
    flex-wrap: wrap;
    gap: 36px;
  }

  .footer-brand {
    align-items: flex-start;
  }
}

@media (max-width: 900px) {
  .geo-section {
    grid-template-columns: minmax(0, 414px);
    justify-items: center;
  }

  .geo-copy,
  .market-grid {
    width: min(100%, 414px);
  }
}

@media (max-width: 760px) {
  .header-inner {
    position: relative;
    height: 71px;
    min-height: 71px;
    flex-wrap: nowrap;
    gap: 16px;
    padding: 0;
  }

  .hamburger-btn {
    position: relative;
    z-index: 2;
    width: 40px;
    height: 40px;
    display: inline-flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.45);
  }

  .site-header[data-menu-open] .hamburger-btn span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header[data-menu-open] .hamburger-btn span:nth-child(2) {
    opacity: 0;
  }

  .site-header[data-menu-open] .hamburger-btn span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .top-nav {
    position: absolute;
    top: 71px;
    right: 0;
    width: min(280px, calc(100vw - 48px));
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
  }

  .site-header[data-menu-open] .top-nav {
    display: flex;
  }

  .top-nav > a:not(.login-btn),
  .top-nav > a:nth-child(1),
  .top-nav > a:nth-child(2),
  .login-btn {
    width: 100%;
    height: 42px;
    margin-left: 0;
    justify-content: center;
  }

  .top-nav > a:not(.login-btn) {
    text-decoration: none;
  }

  .hero-section {
    min-height: 0;
    padding: 46px 0 58px;
  }

  .market-badge {
    height: auto;
    max-width: calc(100% - 48px);
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-content h1,
  .section-heading h2,
  .cta-card h2 {
    font-size: 34px;
    line-height: 42px;
  }

  .hero-content h1 {
    font-size: 0;
    line-height: 0;
  }

  .hero-line {
    font-size: 34px;
    line-height: 42px;
    white-space: normal;
  }

  .hero-content p,
  .cta-card p {
    font-size: 16px;
    line-height: 27px;
  }

  .hero-actions {
    width: calc(100% - 48px);
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .stats-grid {
    width: calc(100% - 48px);
    grid-template-columns: repeat(2, 1fr);
    row-gap: 18px;
  }

  .stats-grid div:nth-child(3)::before {
    display: none;
  }

  .logo-strip {
    padding-bottom: 46px;
  }

  .portal-logos {
    width: calc(100% - 32px);
  }

  .steps-grid,
  .audience-grid,
  .geo-section,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    height: auto;
  }

  .audience-card {
    min-height: 0;
  }

  .geo-section {
    display: grid;
    gap: 28px;
  }

  .market-grid {
    grid-template-columns: 1fr 1fr;
    width: 100%;
    justify-content: center;
  }

  .market-chip,
  .market-chip.wide,
  .market-chip:nth-child(n) {
    width: auto;
    min-width: 0;
  }

  .cta-card {
    min-height: 0;
    padding: 54px 0;
  }

  .footer {
    padding-top: 48px;
  }

  .payments {
    width: 100%;
    max-width: 240px;
  }

  .auth-page {
    grid-template-columns: 1fr;
  }

  .auth-side {
    min-height: 430px;
    padding: 0;
  }

  .auth-side-inner {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    padding: 64px 24px;
  }

  .auth-side h1,
  .auth-benefits {
    width: 100%;
  }

  .auth-side h1 {
    font-size: 30px;
    line-height: 38px;
  }

  .auth-benefits {
    font-size: 12px;
    line-height: 18px;
  }

  .auth-main {
    min-height: auto;
    display: flex;
    justify-content: center;
    padding: 48px 24px;
  }

  .auth-stack {
    position: static;
    width: 100%;
    max-width: 433px;
  }

  .auth-card {
    width: min(100%, 380px);
    height: auto !important;
  }
}

@media (max-width: 480px) {
  .brand-name {
    font-size: 20px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .hero-content h1,
  .section-heading h2,
  .cta-card h2 {
    font-size: 30px;
    line-height: 38px;
  }

  .hero-content h1 {
    font-size: 0;
    line-height: 0;
  }

  .hero-line {
    font-size: 30px;
    line-height: 38px;
  }

  .stats-grid,
  .market-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid div + div::before {
    display: none;
  }

  .auth-card {
    padding: 26px 20px;
  }

  .auth-card h1,
  .auth-subtitle,
  .auth-form,
  .auth-field,
  .auth-field-header,
  .auth-input-wrap,
  .auth-google,
  .auth-submit,
  .auth-role,
  .auth-role-options,
  .auth-consent {
    width: 100%;
  }

  .auth-divider {
    width: 100%;
    justify-content: center;
  }

  .auth-divider::before,
  .auth-divider::after {
    width: min(120px, 32%);
  }

  .auth-role-options {
    flex-direction: column;
    gap: 10px;
  }

  .auth-role-card {
    width: 100%;
  }
}
