:root {
  --color-bg: #fff;
  --font-base: "Manrope", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --color-teal: #21c2ae;
  --color-teal-dark: #1da797;
  --color-navy: #17395c;
  --color-black: #121619;
  --color-muted: #6c737d;
  --border-radius: 12px;
}

#dotnet-compile-error {
  display: none;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--color-bg);
  font-family: var(--font-base);
  line-height: 1.6;
}

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

a:hover,
a:focus {
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.5rem;
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin: 0 0 1rem;
}

.page-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--color-muted);
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.legal-body {
  max-width: 860px;
  margin: 0 auto 4rem;
  display: flex;
  flex-direction: column;
  color: var(--color-navy);
}

.legal-body h2 {
  margin-top: 2rem;
  color: var(--color-black);
}

.legal-body h3 {
  margin-top: 1.2rem;
  font-size: 1.05rem;
  color: var(--color-navy);
}

.legal-body ul {
  list-style: disc;
  margin: 0 0 1rem 1.5rem;
  padding: 0;
}

.legal-body li {
  margin-bottom: 0.35rem;
}

.legal-link {
  color: var(--color-teal);
  text-decoration: underline;
  font-weight: 600;
}

ul {
  padding: 0;
  list-style: none;
}

input,
button,
select,
textarea {
  outline: none;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background-color: var(--color-teal);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--color-teal-dark);
}

.btn-ghost {
  background-color: #323b43;
  color: #fff;
}

.form-input {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.layout-header {
  padding: 1rem 0;
  background-color: var(--color-black);
}

/* Navigation Styles */

.mobile-nav-modal {
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  height: 120px;
  margin: 0 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav .nav-wrapper {
  display: flex;
  gap: 60px;
}

.nav .nav-toggle {
  display: none;
}

.nav .nav-brand img {
  height: 50px;
}

.nav .nav-menu {
  display: flex;
  gap: 40px;
}

.nav .nav-menu li {
  position: relative;
}

.nav .nav-menu li a {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
  font-weight: 600;
  cursor: pointer;
}

.nav .nav-menu li a:hover {
  color: rgba(255, 255, 255, 1);
}

.nav .nav-menu li a.active {
  font-size: 17px;
  color: rgba(255, 255, 255, 1);
}

.nav .nav-menu li .nav-submenu {
  display: none;
  position: absolute;
  background-color: var(--color-black);
  padding: 5px 20px;
  left: -10px;
  white-space: nowrap;
}

.nav .nav-menu li:hover .nav-submenu {
  display: block;
}

.nav .nav-menu li .nav-submenu li {
  padding: 10px 0;
}

.nav .nav-cta {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.nav .nav-cta .login-link {
  padding: 0.5rem 1rem;
  background-color: transparent;
  color: var(--color-teal);
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
}

/* End Navigation Styles */

.black-block {
  background-color: var(--color-black);
  color: #fff;
}

.hero {
  display: flex;
  justify-content: center;
  padding: 80px 0;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 25px;
  max-width: 1290px;
}

.hero-content h2 {
  font-size: 60px;
  line-height: 74px;
  font-weight: 800;
  margin-bottom: 100px;
}

.hero-content p {
  line-height: 27px;
  margin-bottom: 24px;
  color: #e1e8ed;
}

.hero-content .hero-actions {
  display: flex;
  gap: 20px;
}

.register-container {
  background-color: var(--color-teal);
  width: 420px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-radius: var(--border-radius);
}

.register-container h3 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 18px;
}

.register-container p {
  color: var(--color-black);
}

.register-container .register-input {
  padding: 10px;
  border: none;
  border-radius: var(--border-radius);
  font-family: var(--font-base);
}

.register-container a {
  color: var(--color-navy);
}

.register-container .validation-message,
.register-container .register-error {
  color: var(--color-navy);
}

.feature-section {
  padding: 100px 80px;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0 auto;
  max-width: 1290px;
}

.features .feature {
  padding: 30px;
  text-align: center;
  width: 400px;
}

.features .feature .feature-icon {
  margin-bottom: 20px;
}

.features .feature .feature-icon img {
  width: 40px;
  height: 40px;
}

.features .feature h3 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 15px;
}

.features .feature p {
  color: var(--color-muted);
}

.info-section {
  padding: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  max-width: 1290px;
  margin: 0 auto;
}

.info-section h2 {
  font-size: 35px;
  font-weight: 800;
  line-height: 49px;
  color: #192a3d;
  text-align: center;
}

.info-section p {
  color: #3a4f66;
  text-align: center;
}

.info-section .info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.info-section .info-cards .info-card {
  display: flex;
}

.info-section .info-cards .info-card .number span {
  font-size: 30px;
  font-weight: 800;
  background-color: var(--color-teal);
  margin-right: 20px;
  color: #fff;
  border-radius: 50%;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}

.info-section .info-cards .info-card .content h4 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 17px;
  line-height: 38px;
}

.download-section {
  background-color: #f6f7f9;
  padding: 150px 10px;
  text-align: center;
}

.download-section h2 {
  font-size: 35px;
  font-weight: 800;
  line-height: 49px;
  color: #192a3d;
}

.download-section p {
  font-size: 20px;
  line-height: 33px;
  color: #192a3d;
  width: 800px;
  margin: 20px auto 40px;
}

/* Footer Styles */
footer {
  background-color: var(--color-black);
  color: #fff;
  text-align: center;
  padding: 1rem 50px;
}

footer .footer-top {
  display: flex;
  justify-content: center;
  padding: 50px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

footer .footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

footer .footer-links li {
  text-align: left;
}

footer .footer-links li h3 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #e1e8ed;
}

footer .footer-links li .sub-links a {
  color: var(--color-muted);
  font-weight: 400;
  transition: color 0.3s ease;
  line-height: 30px;
}

footer .footer-links li .sub-links a:hover {
  color: var(--color-teal);
}

footer .social-buttons {
  padding: 25px 0;
  display: flex;
  justify-content: center;
  gap: 30px;
  color: #3a4f66;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

footer .social-buttons svg {
  fill: var(--color-muted);
  transition: fill 0.3s ease;
}

footer .social-buttons svg:hover {
  fill: var(--color-teal);
}

footer .footer-copyright {
  padding-top: 25px;
  font-size: 14px;
  color: var(--color-muted);
  text-align: left;
}

footer .footer-copyright a {
  color: var(--color-teal);
}

footer .footer-copyright p {
  margin: 0;
}

/* End Footer Styles */

/* Responsive Layout Adjustments */
@media (max-width: 1200px) {
  .hero {
    padding: 80px 20px;
  }

  .hero-content {
    flex-direction: column;
  }

  .hero-content h2 {
    font-size: 46px;
    line-height: 57px;
    font-weight: 800;
    margin-bottom: 50px;
  }

  .hero-content .hero-right img {
    width: 100%;
  }

  .hero-content .hero-actions a {
    flex: 1;
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }

  .features .feature {
    padding: 0;
    width: auto;
  }
}

@media (max-width: 768px) {
  .nav {
    height: 70px;
    margin: 0 1rem;
  }

  .nav .nav-toggle {
    display: block;
    background: transparent;
    border: none;
    color: var(--color-teal);
    padding: 0px;
    margin: 0px;
  }

  .nav .nav-toggle svg {
    fill: var(--color-teal);
  }

  .nav .nav-wrapper {
    width: 100%;
    justify-content: space-between;
  }

  .nav .nav-brand a {
    display: block;
    height: 40px;
  }

  .nav .nav-brand img {
    width: 100%;
    height: 40px;
  }

  .nav .nav-menu {
    display: none;
  }

  .nav .nav-cta {
    display: none;
  }

  .mobile-nav-modal {
    display: block;
    position: fixed;
    color: white;
    background-color: var(--color-black);
    width: 100%;
    height: 100%;
    visibility: hidden;
    top: 0;
  }

  .mobile-nav-modal.opened {
    opacity: 0.95;
    visibility: visible;
  }

  .mobile-nav-modal .nav-close {
    position: absolute;
    top: 26px;
    right: 15px;
    background: transparent;
    border: none;
    cursor: pointer;
  }

  .mobile-nav-modal .nav-close svg {
    fill: var(--color-teal);
  }

  .mobile-nav-modal .mobile-nav-menu {
    padding: 60px 20px;
  }

  .mobile-nav-modal .mobile-nav-menu li {
    text-align: center;
    padding: 5px 0;
  }

  .mobile-nav-modal .mobile-nav-menu li a {
    font-size: 20px;
    font-weight: 700;
    line-height: 33px;
    color: #fff;
  }

  .mobile-nav-modal .mobile-nav-menu li a:active {
    color: var(--color-teal);
  }

  .mobile-nav-modal .social-buttons {
    fill: #fff;
    display: flex;
    justify-content: center;
    gap: 30px;
  }

  .feature-section {
    padding: 80px 20px;
  }

  .info-section {
    padding: 80px 20px;
  }

  .info-section .info-cards {
    grid-template-columns: 1fr;
  }

  .info-section .info-cards .info-card .content p {
    text-align: left;
  }

  .download-section {
    padding: 80px 20px;
  }

  .download-section p {
    width: 100%;
  }

  footer .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .layout-header {
    padding: 0;
  }

  .features {
    grid-template-columns: 1fr;
  }

  footer {
    padding: 0.5rem 20px;
  }

  footer .footer-links {
    grid-template-columns: 1fr;
  }
}