@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600;700&family=Manrope:wght@400;600;700;800&family=Sora:wght@600;700;800&display=swap");

:root {
  --blue-900: #083d8f;
  --blue-700: #0f5fd1;
  --blue-500: #2f87f1;
  --blue-300: #9fd0ff;
  --white: #ffffff;
  --paper: #f6f9ff;
  --ink: #1d2a44;
  --muted: #5f6f89;
  --green: #1f9656;
  --yellow: #ffd44e;
  --shadow: rgba(28, 63, 130, 0.18);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", "Trebuchet MS", sans-serif;
  line-height: 1.65;
  background: var(--paper);
  background-image:
    radial-gradient(circle at 12% 8%, rgba(15, 95, 209, 0.13), transparent 36%),
    radial-gradient(circle at 84% 10%, rgba(47, 135, 241, 0.12), transparent 34%),
    radial-gradient(circle at 80% 86%, rgba(255, 212, 78, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(244, 248, 255, 0.9)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Crect width='180' height='180' fill='none'/%3E%3Cg opacity='0.23'%3E%3Cpath d='M20 92h34' stroke='%230f5fd1' stroke-width='2'/%3E%3Cpath d='M126 54h30' stroke='%232f87f1' stroke-width='2'/%3E%3Ccircle cx='48' cy='46' r='5' fill='%23ffd44e'/%3E%3Ccircle cx='142' cy='134' r='5' fill='%231f9656'/%3E%3Cpath d='M90 22l10 10-10 10-10-10z' fill='none' stroke='%230f5fd1' stroke-width='2'/%3E%3Cpath d='M90 138l10 10-10 10-10-10z' fill='none' stroke='%232f87f1' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 180px 180px;
}

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

h1,
h2,
h3,
.brand-mark {
  font-family: "Sora", "Trebuchet MS", sans-serif;
  letter-spacing: 0.15px;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 249, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(47, 135, 241, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.24rem;
}

.brand-mark {
  font-size: 1.55rem;
  color: var(--blue-900);
}

.brand-tag {
  text-transform: uppercase;
  font-size: 0.74rem;
  letter-spacing: 1.55px;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-weight: 700;
}

.nav a {
  position: relative;
  padding-bottom: 0.3rem;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--blue-700);
  transition: width 0.3s ease;
}

.nav a:hover::after,
.nav a:focus::after {
  width: 100%;
}

.nav-cta {
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--blue-700), var(--blue-500));
  color: #fff;
  box-shadow: 0 10px 20px rgba(15, 95, 209, 0.3);
}

.nav-cta:hover {
  transform: translateY(-1px);
}

.nav-cta:active {
  transform: translateY(0) scale(0.98);
}

.nav-toggle {
  display: none;
  border: 2px solid var(--blue-700);
  background: transparent;
  border-radius: 999px;
  color: var(--blue-700);
  padding: 0.42rem 0.9rem;
  font-weight: 700;
}

.hero {
  position: relative;
  padding: 4.6rem 0 3.2rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 18%, rgba(47, 135, 241, 0.22), transparent 42%),
    radial-gradient(circle at 68% 84%, rgba(159, 208, 255, 0.36), transparent 38%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 9px;
  background: linear-gradient(90deg, var(--green), #ffffff 45%, var(--green));
  opacity: 0.9;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 2.5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.84rem;
  letter-spacing: 1.9px;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--blue-900);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  color: var(--blue-900);
}

.hero h1 .accent {
  color: var(--blue-700);
}

.lead {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.quick-features {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.quick-features div {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(15, 95, 209, 0.2);
  color: var(--blue-900);
  font-weight: 700;
  font-size: 0.9rem;
}

.hero-actions {
  margin: 1.55rem 0 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.78rem 1.5rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}

.btn.primary {
  color: #fff;
  background: linear-gradient(120deg, var(--blue-700), var(--blue-500));
  box-shadow: 0 16px 28px rgba(15, 95, 209, 0.28);
}

.btn.ghost {
  color: var(--blue-700);
  background: rgba(255, 255, 255, 0.75);
  border: 2px solid var(--blue-700);
}

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

.btn:active {
  transform: translateY(0) scale(0.98);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.8rem;
}

.hero-proof div {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(15, 95, 209, 0.14);
  border-radius: 14px;
  padding: 0.85rem;
}

.hero-proof strong {
  display: block;
  color: var(--blue-900);
  font-size: 0.98rem;
}

.hero-proof span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 1rem;
}

.logo-orb {
  width: min(430px, 100%);
  aspect-ratio: 1 / 1;
  margin-inline: auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.95), rgba(241, 247, 255, 0.92) 45%, rgba(223, 236, 255, 0.9) 85%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(232, 243, 255, 0.92));
  border: 2px solid rgba(15, 95, 209, 0.16);
  box-shadow: 0 24px 40px var(--shadow);
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: 1.2rem;
}

.orb-script {
  margin: 0;
  font-family: "Dancing Script", cursive;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #0d243f;
}

.orb-title {
  margin: 0.15rem 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.45rem, 4.2vw, 2.7rem);
  line-height: 1.1;
  font-weight: 800;
  color: var(--blue-700);
}

.offer-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 95, 209, 0.16);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.55rem;
  box-shadow: 0 20px 34px rgba(23, 62, 126, 0.14);
}

.offer-card h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.35rem, 3vw, 2rem);
  color: var(--blue-900);
}

.offer-card p {
  margin: 0;
  color: var(--muted);
}

.mini-list {
  list-style: none;
  margin: 1rem 0 1.2rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.mini-list li {
  position: relative;
  padding-left: 1.5rem;
  color: #2c3f60;
  font-weight: 700;
}

.mini-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
}

.cta-bar {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(120deg, var(--blue-700), var(--blue-500));
  box-shadow: 0 16px 26px rgba(15, 95, 209, 0.3);
  text-align: center;
}

.cta-bar:hover {
  transform: translateY(-1px);
}

.section {
  padding: 4rem 0;
}

.section.alt {
  background: linear-gradient(180deg, rgba(234, 243, 255, 0.78), rgba(248, 251, 255, 0.86));
}

.section-header {
  margin-bottom: 2rem;
}

.section-header h2 {
  margin: 0;
  color: var(--blue-900);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
}

.text-panel {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 95, 209, 0.12);
  border-radius: var(--radius);
  padding: 1.45rem;
  box-shadow: 0 14px 25px rgba(23, 62, 126, 0.1);
}

.text-panel p:last-child {
  margin-bottom: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.35rem;
}

.card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 95, 209, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 12px 22px rgba(23, 62, 126, 0.1);
  padding: 1.45rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card h3 {
  margin-top: 0;
  color: var(--blue-900);
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 30px rgba(23, 62, 126, 0.16);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.35rem;
}

.step {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 95, 209, 0.12);
  border-left: 4px solid var(--blue-700);
  border-radius: var(--radius);
  box-shadow: 0 10px 20px rgba(23, 62, 126, 0.1);
  padding: 1.35rem;
}

.step span {
  color: var(--blue-700);
  font-weight: 800;
}

.step h3 {
  margin: 0.4rem 0 0.4rem;
  color: var(--blue-900);
}

.step p {
  margin: 0;
  color: var(--muted);
}

.career-cta {
  margin-top: 1.9rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.95rem;
  border-radius: var(--radius);
  border: 1px dashed rgba(15, 95, 209, 0.32);
  background: linear-gradient(125deg, rgba(238, 247, 255, 0.92), rgba(255, 250, 224, 0.92));
  padding: 1.2rem 1.35rem;
}

.career-cta p {
  margin: 0;
}

.inline-link {
  color: var(--blue-700);
  font-weight: 800;
  border-bottom: 1px solid rgba(15, 95, 209, 0.5);
}

.inline-link:hover {
  color: var(--blue-900);
  border-bottom-color: var(--blue-900);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
  align-items: center;
}

.contact-card {
  margin-top: 1rem;
  background: #fff;
  border: 1px solid rgba(15, 95, 209, 0.15);
  border-radius: 16px;
  box-shadow: 0 10px 18px rgba(23, 62, 126, 0.1);
  padding: 1.1rem;
  display: grid;
  gap: 0.9rem;
}

.contact-card strong {
  color: var(--blue-900);
}

.contact-card span {
  color: var(--muted);
}

.form {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 95, 209, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 18px 30px rgba(23, 62, 126, 0.12);
  padding: 1.45rem;
  display: grid;
  gap: 1rem;
}

.form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid rgba(15, 95, 209, 0.25);
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  font-family: inherit;
  font-size: 0.97rem;
  color: var(--ink);
  background: #fff;
}

.form input:focus,
.form textarea:focus {
  outline: 2px solid rgba(15, 95, 209, 0.25);
  border-color: var(--blue-700);
}

.site-footer {
  padding: 2.5rem 0 1.5rem;
  border-top: 1px solid rgba(15, 95, 209, 0.18);
  background: linear-gradient(180deg, rgba(238, 246, 255, 0.94), rgba(227, 239, 255, 0.92));
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
}

.footer-grid strong {
  color: var(--blue-900);
}

.footer-grid a,
.footer-grid span,
.footer-grid p {
  color: var(--muted);
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin-top: 0.3rem;
}

.footer-bottom {
  margin-top: 1.4rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.legal {
  padding: 3.4rem 0 4rem;
}

.legal h1 {
  margin-top: 0;
  color: var(--blue-900);
}

.legal h2 {
  color: var(--blue-700);
  margin-top: 1.9rem;
}

.legal p {
  color: #465b7a;
}

.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 980px) {
  .nav {
    position: absolute;
    right: 4%;
    top: 74px;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(15, 95, 209, 0.18);
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(23, 62, 126, 0.15);
    padding: 0.9rem 1.1rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 680px) {
  .hero {
    padding-top: 3.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .text-panel,
  .form,
  .offer-card {
    padding: 1.2rem;
  }

  .logo-orb {
    width: min(320px, 100%);
  }

  .career-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn,
  .card,
  .nav-cta,
  .cta-bar {
    transition: none;
  }
}
