/* Secure Access landing page (no Tailwind, no third-party libs) */

body.secure-access {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  background: #f8fafc;
  color: #1e293b;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

/* Needed to accommodate mobile sticky CTA, like `pb-24 md:pb-0` */
body.secure-access {
  padding-bottom: 6rem;
}
@media (min-width: 768px) {
  body.secure-access {
    padding-bottom: 0;
  }
}

body.secure-access,
body.secure-access *,
body.secure-access *::before,
body.secure-access *::after {
  box-sizing: border-box;
}

/* Undo any other layout constraints for this page */
body.secure-access main {
  width: auto;
  max-width: none;
  margin: 0;
  padding: 0;
}

.sa .iti {
  width: 100%;
}
.sa .iti input {
  width: 100%;
}

/* intl-tel-input: make room for longer dial codes (+44, +351, +971, etc.) */
.sa .iti--separate-dial-code .iti__selected-flag {
  /* Responsive min width so the dial code doesn't overlap/squeeze */
  min-width: clamp(5.75rem, 18vw, 7.75rem);
  justify-content: space-between;
  gap: 0.5rem;
}
.sa .iti__selected-dial-code {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.sa {
  --sa-blue-900: #1e3a8a;
  --sa-blue-700: #1d4ed8;
  --sa-blue-600: #2563eb;
  --sa-slate-900: #0f172a;
  --sa-slate-800: #1e293b;
  --sa-slate-700: #334155;
  --sa-slate-600: #475569;
  --sa-slate-500: #64748b;
  --sa-slate-400: #94a3b8;
  --sa-slate-200: #e2e8f0;
  --sa-slate-100: #f1f5f9;
  --sa-green-600: #16a34a;
  --sa-green-100: #dcfce7;
  --sa-green-500: #22c55e;
  --sa-green-400: #4ade80;
  --sa-white: #ffffff;

  font-size: 16px;
}

.sa .container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .sa .container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .sa .container {
    padding: 0 2rem;
  }
}

.sa .topbar {
  background: var(--sa-blue-900);
  color: var(--sa-white);
  font-size: 10px;
  padding: 0.5rem 1rem;
  text-align: center;
  position: relative;
  z-index: 50;
}
@media (min-width: 768px) {
  .sa .topbar {
    font-size: 12px;
  }
}
.sa .topbar .status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.sa .pulse-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--sa-green-400);
  animation: sa-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes sa-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.45;
  }
}
.sa .topbar .country {
  font-weight: 700;
  text-decoration: underline dotted;
}

.sa .nav {
  background: var(--sa-white);
  border-bottom: 1px solid var(--sa-slate-200);
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.sa .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 3.5rem;
  gap: 1rem;
}
@media (min-width: 768px) {
  .sa .nav-inner {
    min-height: 4rem;
  }
}
.sa .brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.sa .brand-badge {
  background: var(--sa-blue-600);
  color: var(--sa-white);
  padding: 0.375rem;
  border-radius: 0.5rem;
  display: grid;
  place-items: center;
}
.sa .brand-name {
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--sa-slate-900);
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .sa .brand-name {
    font-size: 1.25rem;
  }
}
.sa .brand-name .accent {
  color: var(--sa-blue-600);
}
.sa .nav-links {
  display: none;
  gap: 2rem;
  font-size: 0.875rem;
  color: var(--sa-slate-600);
  font-weight: 500;
}
.sa .nav-links a {
  text-decoration: none;
  color: inherit;
  transition: color 150ms ease;
}
.sa .nav-links a:hover {
  color: var(--sa-blue-600);
}
@media (min-width: 768px) {
  .sa .nav-links {
    display: flex;
  }
}
.sa .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.sa .nav-cta .verified {
  display: none;
  font-size: 0.75rem;
  color: var(--sa-slate-400);
}
@media (min-width: 1024px) {
  .sa .nav-cta .verified {
    display: inline;
  }
}
.sa .btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sa-blue-600);
  color: var(--sa-white);
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.75rem;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
  transition: background-color 150ms ease, transform 150ms ease,
    box-shadow 150ms ease;
  white-space: nowrap;
}
.sa .btn-pill:hover {
  background: var(--sa-blue-700);
}
@media (min-width: 768px) {
  .sa .btn-pill {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
  }
}

.sa .hero {
  position: relative;
  padding: 1.5rem 0 3rem;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .sa .hero {
    padding: 5rem 0 7rem;
  }
}
.sa .bg-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(to right, var(--sa-slate-100) 1px, transparent 1px),
    linear-gradient(to bottom, var(--sa-slate-100) 1px, transparent 1px);
  background-size: 24px 24px;
}
.sa .hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .sa .hero-grid {
    grid-template-columns: 7fr 5fr;
    gap: 4rem;
  }
}

.sa .pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  color: var(--sa-blue-700);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .sa .pill {
    font-size: 12px;
    margin-bottom: 1.5rem;
  }
}

.sa .h1 {
  font-size: 1.875rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--sa-slate-900);
  margin: 0 0 1rem;
}
@media (min-width: 768px) {
  .sa .h1 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .sa .h1 {
    font-size: 3rem;
  }
}
.sa .text-gradient {
  background-image: linear-gradient(90deg, #1e40af, #3b82f6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sa .lead {
  font-size: 1rem;
  color: var(--sa-slate-600);
  margin: 0 0 1.5rem;
  line-height: 1.625;
}
@media (min-width: 768px) {
  .sa .lead {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }
}

.sa .badges {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) {
  .sa .badges {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }
}
.sa .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--sa-slate-700);
  font-weight: 600;
}
@media (min-width: 768px) {
  .sa .badge {
    font-size: 0.875rem;
  }
}
.sa .badge-icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  background: var(--sa-green-100);
  color: var(--sa-green-600);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.sa .badge-icon svg {
  width: 0.875rem;
  height: 0.875rem;
}
@media (min-width: 768px) {
  .sa .badge-icon svg {
    width: 1rem;
    height: 1rem;
  }
}

.sa .trustbar {
  border-top: 1px solid var(--sa-slate-200);
  padding-top: 1.5rem;
}
@media (min-width: 768px) {
  .sa .trustbar {
    padding-top: 2rem;
  }
}
.sa .trustbar .label {
  font-size: 10px;
  color: var(--sa-slate-400);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 0.75rem;
}
@media (min-width: 768px) {
  .sa .trustbar .label {
    font-size: 12px;
    margin-bottom: 1rem;
  }
}
.sa .trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0.6;
  align-items: baseline;
}
@media (min-width: 768px) {
  .sa .trust-logos {
    gap: 1.5rem;
  }
}
.sa .trust-logos span {
  font-weight: 800;
  color: var(--sa-slate-500);
  font-size: 1.125rem;
}
@media (min-width: 768px) {
  .sa .trust-logos span {
    font-size: 1.25rem;
  }
}

.sa .card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--sa-slate-200);
  border-radius: 1rem;
  padding: 1.25rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
  position: relative;
}
@media (min-width: 640px) {
  .sa .card {
    padding: 2rem;
  }
}
.sa .card h3 {
  margin: 0;
  color: var(--sa-slate-900);
  font-size: 1.125rem;
  font-weight: 800;
}
@media (min-width: 768px) {
  .sa .card h3 {
    font-size: 1.25rem;
  }
}
.sa .card p {
  margin: 0.25rem 0 0;
  color: var(--sa-slate-500);
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .sa .card p {
    font-size: 0.875rem;
  }
}

.sa .form {
  margin-top: 1.25rem;
}
.sa .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .sa .field-row {
    gap: 1rem;
  }
}
.sa label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: var(--sa-slate-700);
  margin-bottom: 0.25rem;
}
@media (min-width: 768px) {
  .sa label {
    font-size: 12px;
  }
}
.sa .input {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 0.75rem;
  padding: 0.65rem 0.875rem;
  font-size: 0.875rem;
  outline: none;
  transition: box-shadow 150ms ease, border-color 150ms ease;
  background: var(--sa-white);
  color: var(--sa-slate-800);
}
@media (min-width: 768px) {
  .sa .input {
    padding: 0.75rem 1rem;
  }
}
.sa .input:focus {
  border-color: var(--sa-blue-600);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}
.sa .input-icon-wrap {
  position: relative;
}
.sa .input-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  color: var(--sa-slate-400);
  pointer-events: none;
}
.sa .input.with-icon {
  padding-left: 2.5rem;
}

.sa .btn-primary {
  width: 100%;
  border: 0;
  background: var(--sa-blue-600);
  color: var(--sa-white);
  font-weight: 800;
  border-radius: 0.75rem;
  padding: 0.9rem 1rem;
  font-size: 0.875rem;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  transition: background-color 150ms ease, transform 150ms ease,
    box-shadow 150ms ease;
}
@media (min-width: 768px) {
  .sa .btn-primary {
    padding: 1rem 1rem;
    font-size: 1rem;
  }
}
.sa .btn-primary:hover {
  background: var(--sa-blue-700);
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.12);
}

.sa .fineprint {
  margin: 1rem 0 0;
  font-size: 10px;
  color: var(--sa-slate-400);
  text-align: center;
  line-height: 1.35;
}
@media (min-width: 768px) {
  .sa .fineprint {
    font-size: 12px;
  }
}
.sa .fineprint a {
  text-decoration: underline;
}
.sa .fineprint a:hover {
  color: var(--sa-slate-600);
}

.sa .security-footnote {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--sa-slate-100);
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  opacity: 0.75;
}
.sa .security-footnote .pilltext {
  font-size: 9px;
  color: var(--sa-slate-400);
  font-weight: 700;
  letter-spacing: 0.06em;
}
@media (min-width: 768px) {
  .sa .security-footnote .pilltext {
    font-size: 10px;
  }
}
.sa .security-footnote .badge-logo {
  border: 1px solid var(--sa-slate-200);
  border-radius: 0.5rem;
  padding: 0.25rem 0.5rem;
  font-size: 10px;
  color: var(--sa-slate-500);
  font-weight: 800;
  background: #fff;
}

.sa .section {
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .sa .section {
    padding: 4rem 0;
  }
}
.sa .section.white {
  background: var(--sa-white);
  border-top: 1px solid var(--sa-slate-100);
}
.sa .section.slate {
  background: #f8fafc;
}
.sa .section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}
.sa .section-title h2 {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--sa-slate-900);
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .sa .section-title h2 {
    font-size: 1.875rem;
  }
}
.sa .section-title p {
  margin: 0;
  color: var(--sa-slate-600);
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .sa .section-title p {
    font-size: 1rem;
  }
}

.sa .feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .sa .feature-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}
.sa .feature {
  background: #f8fafc;
  border: 1px solid var(--sa-slate-100);
  border-radius: 1rem;
  padding: 1.25rem;
  transition: box-shadow 150ms ease;
}
@media (min-width: 768px) {
  .sa .feature {
    padding: 1.5rem;
  }
}
.sa .feature:hover {
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}
.sa .feature .iconbox {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: #dbeafe;
  color: var(--sa-blue-600);
  display: grid;
  place-items: center;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .sa .feature .iconbox {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
  }
}
.sa .feature h3 {
  margin: 0 0 0.5rem;
  font-weight: 800;
  color: var(--sa-slate-900);
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .sa .feature h3 {
    font-size: 1rem;
  }
}
.sa .feature p {
  margin: 0;
  color: var(--sa-slate-600);
  font-size: 0.75rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .sa .feature p {
    font-size: 0.875rem;
  }
}

.sa .faq {
  max-width: 48rem;
  margin: 0 auto;
}
.sa .faq-list {
  display: grid;
  gap: 1rem;
}
.sa details.faq-item {
  background: var(--sa-white);
  border: 1px solid var(--sa-slate-200);
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  padding: 0.75rem 1rem;
}
@media (min-width: 768px) {
  .sa details.faq-item {
    padding: 1rem 1.25rem;
  }
}
.sa details.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  color: var(--sa-slate-900);
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .sa details.faq-item summary {
    font-size: 1rem;
  }
}
.sa details.faq-item summary::-webkit-details-marker {
  display: none;
}
.sa .faq-body {
  margin-top: 0.5rem;
  color: var(--sa-slate-600);
  font-size: 0.75rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .sa .faq-body {
    font-size: 0.875rem;
  }
}

.sa .cta {
  background: var(--sa-blue-900);
  color: var(--sa-white);
  text-align: center;
  padding: 2.5rem 0;
}
@media (min-width: 768px) {
  .sa .cta {
    padding: 3rem 0;
  }
}
.sa .cta h2 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 800;
}
@media (min-width: 768px) {
  .sa .cta h2 {
    font-size: 1.5rem;
  }
}
.sa .cta p {
  margin: 0 0 1.5rem;
  color: #bfdbfe;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .sa .cta p {
    font-size: 1rem;
  }
}
.sa .cta .btn-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sa-green-500);
  color: #fff;
  font-weight: 800;
  padding: 0.85rem 2rem;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(34, 197, 94, 0.25);
  transition: transform 150ms ease, background-color 150ms ease;
}
.sa .cta .btn-green:hover {
  background: #16a34a;
  transform: scale(1.03);
}

.sa .footer {
  background: var(--sa-slate-900);
  color: var(--sa-slate-500);
  font-size: 10px;
  padding: 2.5rem 0 5.5rem;
  border-top: 1px solid #1f2937;
}
@media (min-width: 768px) {
  .sa .footer {
    font-size: 12px;
    padding-bottom: 3rem;
  }
}
.sa .footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .sa .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
  }
}
.sa .footer h5 {
  margin: 0 0 0.75rem;
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 800;
}
.sa .footer a {
  color: inherit;
  text-decoration: none;
}
.sa .footer a:hover {
  color: #cbd5e1;
}
.sa .footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}
.sa .footer .legal p {
  margin: 0 0 1rem;
  line-height: 1.7;
  text-align: justify;
}
.sa .footer .bottom {
  border-top: 1px solid #1f2937;
  padding-top: 1.5rem;
  text-align: center;
}

.sa .cookie {
  position: fixed;
  left: 0;
  width: 100%;
  bottom: 4rem;
  background: var(--sa-white);
  border-top: 1px solid var(--sa-slate-200);
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.08);
  z-index: 40;
  padding: 0.75rem;
}
@media (min-width: 768px) {
  .sa .cookie {
    bottom: 0;
    padding: 1rem;
  }
}
.sa .cookie-inner {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.sa .cookie-text {
  font-size: 0.75rem;
  color: var(--sa-slate-600);
  flex: 1;
}
@media (min-width: 768px) {
  .sa .cookie-text {
    font-size: 0.875rem;
  }
}
.sa .cookie-text .desktop {
  display: none;
}
.sa .cookie-text .mobile {
  display: inline;
}
@media (min-width: 768px) {
  .sa .cookie-text .desktop {
    display: inline;
  }
  .sa .cookie-text .mobile {
    display: none;
  }
}
.sa .cookie-actions {
  flex: 0 0 auto;
}
.sa .cookie-btn {
  border: 0;
  background: var(--sa-blue-600);
  color: #fff;
  font-weight: 800;
  border-radius: 0.75rem;
  padding: 0.6rem 1rem;
  font-size: 0.75rem;
  cursor: pointer;
  transition: background-color 150ms ease;
}
.sa .cookie-btn:hover {
  background: var(--sa-blue-700);
}

.sa .sticky-cta {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: var(--sa-white);
  border-top: 1px solid var(--sa-slate-200);
  padding: 0.75rem;
  z-index: 50;
  box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.1);
  animation: sa-slide-up 0.45s ease-out forwards;
}
@keyframes sa-slide-up {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
.sa .sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--sa-blue-600);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  border-radius: 0.75rem;
  padding: 0.95rem 1rem;
  transition: background-color 150ms ease;
}
.sa .sticky-cta a:hover {
  background: var(--sa-blue-700);
}
@media (min-width: 768px) {
  .sa .sticky-cta {
    display: none;
  }
}


