:root {
  --bridge-teal: #18b8a6;
  --bridge-teal-dark: #087f75;
  --bridge-green: #41dca3;
  --bridge-navy: #102a43;
  --bridge-muted: #5f6f7e;
  --bridge-soft: #f4fbfa;
  --bridge-white: #ffffff;
  --bridge-border: rgba(16, 42, 67, 0.12);
  --shadow-soft: 0 18px 45px rgba(16, 42, 67, 0.14);
  --radius-lg: 24px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--bridge-navy);
  background: var(--bridge-white);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(16, 42, 67, 0.08);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 850;
  letter-spacing: -0.04em;
  color: var(--bridge-white);
  text-decoration: none;
}

.site-header.scrolled .brand {
  color: var(--bridge-navy);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  overflow: hidden;

  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 10px 26px rgba(16, 42, 67, 0.12);
  backdrop-filter: blur(10px);
}

.brand-mark-img {
  width: 45px;
  height: 45px;
  transform: scale(1.1);
  object-fit: contain;
  display: block;
  background: transparent;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.site-header.scrolled .brand-mark {
  background: rgba(24, 184, 166, 0.12);
  border: 1px solid rgba(24, 184, 166, 0.32);
  box-shadow: none;
}

.site-header.scrolled .brand-mark-img {
  /* Keeps the icon teal when navbar is on white */
  filter: none;
  opacity: 1;
}

.brand-text {
  font-size: 1.35rem;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.92);
}

.site-header.scrolled .nav-links {
  color: var(--bridge-navy);
}

.nav-links a {
  font-size: 0.95rem;
}

.nav-links a:not(.nav-login) {
  position: relative;
  padding: 8px 0;
  transition: color 0.2s ease;
}

.nav-links a:not(.nav-login)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-links a:not(.nav-login):hover,
.nav-links a:not(.nav-login).active {
  color: #ffffff;
}

.site-header.scrolled .nav-links a:not(.nav-login):hover,
.site-header.scrolled .nav-links a:not(.nav-login).active {
  color: var(--bridge-teal-dark);
}

.nav-links a:not(.nav-login):hover::after,
.nav-links a:not(.nav-login).active::after {
  transform: scaleX(1);
}

.nav-login {
  padding: 10px 19px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.86);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}


.nav-login:hover,
.nav-login:focus-visible {
  color: var(--bridge-teal-dark);
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 12px 26px rgba(16, 42, 67, 0.16);
  transform: translateY(-1px);
}

.site-header.scrolled .nav-login {
  color: var(--bridge-teal-dark);
  border-color: var(--bridge-teal);
  background: rgba(24, 184, 166, 0.08);
}

.site-header.scrolled .nav-login:hover,
.site-header.scrolled .nav-login:focus-visible {
  color: #ffffff;
  background: var(--bridge-teal-dark);
  border-color: var(--bridge-teal-dark);
  box-shadow: 0 12px 26px rgba(8, 127, 117, 0.22);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: white;
  transition: transform 0.2s ease;
}

.site-header.scrolled .nav-toggle span {
  background: var(--bridge-navy);
}

.hero {
  min-height: 96vh;
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 20px 120px;
  background:
    linear-gradient(135deg, rgba(7, 127, 117, 0.88), rgba(65, 220, 163, 0.76)),
    url("./assets/test_1.jpg");
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -34% -10%;
  height: 28%;
  background: var(--bridge-white);
  transform: skewY(-4deg);
  transform-origin: top left;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  color: white;
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  color: rgba(255, 255, 255, 0.86);
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.075em;
}

.hero-subtitle {
  max-width: 760px;
  margin: 26px auto 0;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}



.hero-actions {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: white;
  color: var(--bridge-teal-dark);
  box-shadow: 0 16px 35px rgba(16, 42, 67, 0.2);
}

.btn-secondary {
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  color: white;
}

.btn-light {
  background: white;
  color: var(--bridge-teal-dark);
}

.btn-outline-light {
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  color: white;
}

.hero-note {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.88);
}

.hero-note a {
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.section {
  padding: 90px 20px;
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.section-label {
  color: var(--bridge-teal-dark);
}

.section h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.section p {
  margin: 0;
  color: var(--bridge-muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

.cards-section {
  background: var(--bridge-soft);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 38px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.info-card {
  background: white;
  border: 1px solid var(--bridge-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 14px 35px rgba(16, 42, 67, 0.06);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(24, 184, 166, 0.16), rgba(65, 220, 163, 0.18));
  font-size: 1.5rem;
  margin-bottom: 22px;
}

.info-card h3 {
  margin: 0 0 14px;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.info-card p {
  font-size: 0.98rem;
}

.organization-section {
  background: white;
}

.mini-actions {
  margin-top: 22px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.text-link {
  color: var(--bridge-teal-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.safety-section {
  padding-top: 40px;
}

.safety-box {
  background: linear-gradient(135deg, rgba(24, 184, 166, 0.1), rgba(65, 220, 163, 0.12));
  border: 1px solid rgba(24, 184, 166, 0.2);
  border-radius: var(--radius-lg);
  padding: 38px;
}

.safety-box h2 {
  max-width: 820px;
  margin-bottom: 18px;
}

.final-cta {
  padding: 95px 20px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(65, 220, 163, 0.22), transparent 28%),
    radial-gradient(circle at 82% 80%, rgba(255, 255, 255, 0.14), transparent 30%),
    linear-gradient(135deg, var(--bridge-teal-dark), var(--bridge-teal));
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 42%),
    radial-gradient(circle at center, transparent 0%, rgba(7, 28, 36, 0.14) 100%);
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
}

.final-cta-card {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 56px 34px;
  text-align: center;
  color: white;
  border-radius: 32px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 24px 70px rgba(7, 28, 36, 0.22);
  backdrop-filter: blur(14px);
}

.final-cta-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  left: 50%;
  top: -170px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  filter: blur(40px);
  pointer-events: none;
}

.final-cta-label {
  position: relative;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.final-cta h2 {
  position: relative;
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.final-cta p {
  position: relative;
  margin: 18px auto 0;
  max-width: 610px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
}

.final-cta-actions {
  position: relative;
  margin-top: 34px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer {
  padding: 46px 20px 92px;
  background: #071c24;
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.footer-brand {
  max-width: 680px;
}

.footer-logo-row {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 14px;
}

.footer-mark {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-mark-img {
  width: 37px;
  height: 37px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.94;
  transform: scale(1.08);
}

.footer-brand-text {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.footer-note {
  margin: 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
  font-size: 0.96rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  padding-top: 4px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

@media (max-width: 860px) {
  .footer {
    padding: 40px 20px 100px;
  }

  .footer-links {
    flex-direction: column;
    gap: 14px;
  }
}

.mobile-login-bar {
  display: none;
}

.intro-layout {
  max-width: 980px;
}

.intro-copy {
  max-width: 760px;
  margin-bottom: 34px;
}

.intro-copy h2 {
  max-width: 720px;
  margin-bottom: 18px;
}

.intro-text {
  max-width: 760px;
  font-size: 1.06rem;
  line-height: 1.8;
}

.intro-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 10px;
}

.mini-card {
  background: #ffffff;
  border: 1px solid var(--bridge-border);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(16, 42, 67, 0.05);
}

.mini-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--bridge-navy);
}

.mini-card p {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--bridge-muted);
}

.organization-section {
  background:
    radial-gradient(circle at top left, rgba(24, 184, 166, 0.1), transparent 34%),
    #ffffff;
}

.organization-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.organization-copy {
  max-width: 650px;
}

.organization-copy h2 {
  margin-bottom: 22px;
}

.organization-copy p {
  margin: 0 0 18px;
  color: var(--bridge-muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

.organization-card {
  background: var(--bridge-white);
  border: 1px solid rgba(24, 184, 166, 0.18);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 18px 45px rgba(16, 42, 67, 0.1);
}

.organization-card-header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--bridge-border);
}

.organization-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: linear-gradient(135deg, rgba(24, 184, 166, 0.14), rgba(65, 220, 163, 0.18));
  font-size: 1.35rem;
}

.organization-card h3 {
  margin: 0 0 6px;
  font-size: 1.35rem;
  letter-spacing: -0.035em;
  color: var(--bridge-navy);
}

.organization-card-header p {
  margin: 0;
  color: var(--bridge-muted);
  line-height: 1.6;
  font-size: 0.98rem;
}

.organization-options {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.org-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--bridge-border);
  background: #ffffff;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.org-option:hover {
  transform: translateY(-2px);
  border-color: rgba(24, 184, 166, 0.34);
  background: var(--bridge-soft);
  box-shadow: 0 12px 28px rgba(16, 42, 67, 0.08);
}

.org-option-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #ffffff;
  background: var(--bridge-teal-dark);
  font-weight: 900;
}

.org-option strong {
  display: block;
  color: var(--bridge-navy);
  font-size: 0.98rem;
  margin-bottom: 3px;
}

.org-option small {
  display: block;
  color: var(--bridge-muted);
  line-height: 1.4;
  font-size: 0.86rem;
}

.ethical-ai-section {
  background:
    linear-gradient(180deg, #ffffff 0%, var(--bridge-soft) 100%);
}

.ethical-ai-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 52px;
  align-items: center;
}

.ethical-ai-copy {
  max-width: 640px;
}

.ethical-ai-copy h2 {
  margin-bottom: 22px;
}

.ethical-ai-copy p {
  margin: 0 0 18px;
  color: var(--bridge-muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

.ethical-ai-points {
  display: grid;
  gap: 16px;
}

.ethical-point {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(24, 184, 166, 0.16);
  box-shadow: 0 12px 30px rgba(16, 42, 67, 0.06);
}

.ethical-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: linear-gradient(135deg, rgba(24, 184, 166, 0.14), rgba(65, 220, 163, 0.18));
  font-size: 1.25rem;
}

.ethical-point h3 {
  margin: 0 0 6px;
  color: var(--bridge-navy);
  font-size: 1.08rem;
  letter-spacing: -0.025em;
}

.ethical-point p {
  margin: 0;
  color: var(--bridge-muted);
  line-height: 1.65;
  font-size: 0.96rem;
}

.auth-topbar {
  width: min(1120px, calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.auth-topbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--bridge-white);
  text-decoration: none;
  font-weight: 850;
  letter-spacing: -0.04em;
  font-size: 1.35rem;
}

.auth-topbar-mark {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 10px 26px rgba(16, 42, 67, 0.12);
  backdrop-filter: blur(10px);
}

.auth-topbar-mark img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  transform: scale(1.1);
}

.auth-back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.82);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.94rem;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.auth-back-link:hover,
.auth-back-link:focus-visible {
  color: var(--bridge-teal-dark);
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 12px 26px rgba(16, 42, 67, 0.16);
  transform: translateY(-1px);
}

@media (max-width: 860px) {
  .ethical-ai-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 860px) {
  .organization-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .organization-card {
    padding: 24px;
  }

  .organization-card-header {
    align-items: flex-start;
  }
}

@media (max-width: 860px) {
  .intro-feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .nav {
    min-height: 70px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border-radius: 20px;
    color: var(--bridge-navy);
    background: white;
    box-shadow: var(--shadow-soft);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 12px;
    border-radius: 12px;
  }

  .nav-links a:hover {
    background: var(--bridge-soft);
  }

  .nav-login {
    border-color: var(--bridge-teal);
    color: var(--bridge-teal-dark);
    text-align: center;
    margin-top: 8px;
  }

  .hero {
    min-height: 88vh;
    padding-top: 110px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 17vw, 5.2rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 70px 20px;
  }

  .safety-box {
    padding: 28px;
  }

  .mobile-login-bar {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 30;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 52px;
    border-radius: 999px;
    background: var(--bridge-teal-dark);
    color: white;
    font-weight: 850;
    box-shadow: 0 14px 34px rgba(16, 42, 67, 0.24);
  }

  .brand-mark {
    width: 39px;
    height: 39px;
    border-radius: 14px;
    }

    .brand-mark-img {
    width: 29px;
    height: 29px;
    }

    .brand-text {
    font-size: 1.22rem;
    }

    .nav-links a:not(.nav-login) {
        padding: 14px 12px;
    }

    .nav-links a:not(.nav-login)::after {
        display: none;
    }

    .nav-links a:not(.nav-login):hover,
    .nav-links a:not(.nav-login).active {
        color: var(--bridge-teal-dark);
        background: var(--bridge-soft);
    }

    .final-cta {
    padding: 72px 20px;
  }

  .final-cta-card {
    padding: 42px 22px;
    border-radius: 26px;
  }

  .final-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .final-cta-actions .btn {
    width: 100%;
  }

  .auth-topbar {
    width: min(100% - 24px, 1120px);
    min-height: 70px;
  }

  .auth-topbar-brand {
    font-size: 1.22rem;
  }

  .auth-topbar-mark {
    width: 39px;
    height: 39px;
    border-radius: 14px;
  }

  .auth-topbar-mark img {
    width: 39px;
    height: 39px;
  }

  .auth-back-link {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.88rem;
  }
}

@media (max-width: 520px) {
  .hero-subtitle {
    font-size: 1.03rem;
  }

  .section h2,
  .final-cta h2 {
    font-size: 2rem;
  }

  .section p {
    font-size: 1rem;
  }

  .info-card {
    padding: 24px;
  }
}