@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Manrope:wght@700;800&display=swap");
:root {
  --primary: #395f94;
  --primary-dim: #2c5387;
  --primary-container: #d5e3ff;
  --on-primary: #f6f7ff;
  --on-primary-container: #2b5287;
  --secondary: #546073;
  --secondary-container: #d7e3fa;
  --tertiary: #51626a;
  --tertiary-container: #e1f4fe;
  --on-tertiary-container: #4c5d65;
  --surface: #f8f9fa;
  --surface-bright: #f8f9fa;
  --surface-container: #eaeff1;
  --surface-container-low: #f1f4f6;
  --surface-container-high: #e3e9ec;
  --surface-container-highest: #dbe4e7;
  --surface-container-lowest: #ffffff;
  --on-surface: #2b3437;
  --on-surface-variant: #586064;
  --outline: #737c7f;
  --outline-variant: #abb3b7;
  --error: #9f403d;
  --error-container: #fe8983;
  --font-headline: "Manrope", sans-serif;
  --font-body: "Inter", sans-serif;
  --max-width: 1440px;
  --section-padding: 0 3rem;
  --section-spacing: 8rem;
  --roundedness-md: 0.5rem;
  --roundedness-xl: 0.75rem;
  --roundedness-2xl: 1rem;
  --roundedness-3xl: 1.5rem;
  --shadow-ambient: 0 20px 40px rgba(43, 52, 55, 0.06);
  --shadow-card: 0 20px 40px rgba(43, 52, 55, 0.04);
  --shadow-hero: 0 40px 80px rgba(43, 52, 55, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--on-surface);
  background-color: var(--surface);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

::selection {
  background-color: var(--primary-container);
  color: var(--on-primary-container);
}

.glass-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-ambient);
}
.glass-nav .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem 3rem;
}
.glass-nav .nav-brand {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--on-surface);
  letter-spacing: -0.03em;
  cursor: pointer;
}
.glass-nav .nav-label {
  color: var(--on-surface-variant);
  font-weight: 500;
  font-size: 0.875rem;
}

.hero-section {
  position: relative;
  min-height: 870px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 3rem 0;
  overflow: hidden;
}
.hero-section .hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: 800px;
  width: 100%;
}
.hero-section .hero-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background-color: var(--tertiary-container);
  color: var(--on-tertiary-container);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  align-self: flex-start;
}
.hero-section h1 {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 3.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--on-surface);
  margin: 0 0 2rem;
}
.hero-section h1 .text-primary {
  color: var(--primary);
}
.hero-section .hero-subtitle {
  color: var(--on-surface-variant);
  font-size: 1.25rem;
  max-width: 36rem;
  line-height: 1.7;
  margin: 0 0 3rem;
}
.hero-section .hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dim) 100%);
  color: var(--on-primary);
  padding: 1rem 2rem;
  border-radius: var(--roundedness-2xl);
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 1rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(57, 95, 148, 0.2);
  transition: all 0.2s;
}
.btn-primary:hover {
  box-shadow: 0 8px 24px rgba(57, 95, 148, 0.3);
}
.btn-primary:active {
  transform: scale(0.95);
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dim) 100%);
  color: var(--on-primary);
  padding: 1.25rem;
  border-radius: var(--roundedness-2xl);
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 1rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(57, 95, 148, 0.15);
  transition: all 0.2s;
}
.btn-submit:active {
  transform: scale(0.98);
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-info-item .material-symbols-outlined {
  color: var(--primary);
}
.contact-info-item a {
  color: var(--on-surface);
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
}
.contact-info-item a:hover {
  color: var(--primary);
}

.site-footer {
  background: var(--surface-container-low);
  padding: 3rem;
  margin-top: 3rem;
}
.site-footer .footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 2rem;
}
.site-footer .footer-brand {
  font-family: var(--font-headline);
  font-weight: 700;
  color: var(--on-surface);
}
.site-footer .footer-brand .text-primary {
  color: var(--primary);
}
.site-footer .footer-copy {
  color: var(--outline);
  font-size: 0.875rem;
  letter-spacing: 0.02em;
}
.site-footer .footer-links {
  display: flex;
  gap: 2rem;
}
.site-footer .footer-links a {
  color: var(--outline);
  font-size: 0.875rem;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
.site-footer .footer-links a:hover {
  color: var(--on-surface);
}

.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 6rem 3rem 4rem;
}
.legal-page h4 {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 2rem;
  margin: 0 0 2rem;
}
.legal-page h6 {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.125rem;
  margin: 2rem 0 0.75rem;
}
.legal-page p {
  color: var(--on-surface-variant);
  line-height: 1.8;
  margin: 0 0 1rem;
}

@media (max-width: 1024px) {
  .hero-section {
    min-height: auto;
    padding: 8rem 2rem 4rem;
  }
  .hero-section h1 {
    font-size: 2.5rem;
  }
  .features-section .features-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  :root {
    --section-spacing: 5rem;
  }
  .glass-nav .nav-inner {
    padding: 1rem 1.5rem;
  }
  .glass-nav .nav-label {
    display: none;
  }
  .hero-section {
    padding: 6rem 1.5rem 3rem;
  }
  .hero-section h1 {
    font-size: 2rem;
  }
  .hero-section .hero-subtitle {
    font-size: 1rem;
  }
  .hero-section .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .features-section {
    padding: 4rem 1.5rem;
  }
  .site-footer {
    padding: 2rem 1.5rem;
  }
  .site-footer .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .legal-page {
    padding: 5rem 1.5rem 3rem;
  }
}
