/* 
  Trezo Landing Page Stylesheet
  Colors: Primary #099d85, Secondary #057261
  Style: Simple, Professional, Startup-like, No heavy shadows, Border radius 8px (md)
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #099d85;
  --primary-hover: #07826e;
  --primary-light: #e6f5f3;
  --secondary: #057261;
  --secondary-hover: #045a4d;
  --secondary-light: #e6eff0;
  --bg-white: #ffffff;
  --bg-light: #f8fafc;
  --bg-slate: #f1f5f9;
  --text-dark: #0f172a;
  --text-gray: #475569;
  --text-muted: #64748b;
  --border-color: #e2e8f0;
  
  /* Constraints */
  --radius-md: 8px;
  --radius-sm: 4px;
  
  /* Shadows - simple, subtle, no exaggeration */
  --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 12px 0 rgba(15, 23, 42, 0.03), 0 1px 3px 0 rgba(15, 23, 42, 0.02);
  --shadow-lg: 0 10px 25px -5px rgba(15, 23, 42, 0.04), 0 4px 10px -3px rgba(15, 23, 42, 0.02);
  
  /* Transitions */
  --transition: all 0.25s ease;
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text-gray);
  background-color: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

/* Utility Layouts */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-bg {
  background-color: var(--bg-light);
}

.text-center {
  text-align: center;
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  background-color: var(--primary-light);
  color: var(--secondary);
  font-size: 13px;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }
  .section {
    padding: 64px 0;
  }
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 56px auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--bg-white);
}

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

.btn-secondary {
  background-color: var(--bg-white);
  color: var(--text-dark);
  border-color: var(--border-color);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--bg-light);
  border-color: var(--text-muted);
}

.btn-dark {
  background-color: var(--secondary);
  color: var(--bg-white);
}

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

.btn-lg {
  padding: 14px 28px;
  font-size: 16px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  height: 80px;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.header.scrolled {
  height: 70px;
  box-shadow: var(--shadow-sm);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 36px;
  width: auto;
  border-radius: 0;
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
}

.logo-dot {
  color: var(--primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-gray);
}

.nav-link:hover {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-dark);
}

@media (max-width: 991px) {
  .nav-menu {
    display: none; /* Managed by JS */
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .header-container {
    position: relative;
  }
  
  .nav-actions {
    display: none;
  }
}

/* Mobile Nav Overlay Menu */
.mobile-nav {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg-white);
  padding: 40px 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
  border-top: 1px solid var(--border-color);
}

.mobile-nav.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-nav .nav-link {
  font-size: 20px;
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 1px solid var(--bg-light);
}

/* Hero Section */
/* Hero Section */
.hero {
  padding-top: 160px;
  padding-bottom: 96px;
  overflow: hidden;
  background-color: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
}

.hero-container-split {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 48px;
  align-items: center;
}

.hero-content {
  text-align: left;
}

.hero-title {
  font-size: 54px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin-bottom: 24px;
}

.hero-title span {
  color: var(--primary);
}

.hero-desc {
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-gray);
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  margin-bottom: 0;
}

.hero-mockup-wrap {
  width: 100%;
}

.hero-image-wrap {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  background-color: var(--bg-white);
}

.hero-image-wrap img {
  width: 100%;
  display: block;
}

@media (max-width: 991px) {
  .hero-container-split {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-title {
    font-size: 38px;
  }
  
  .hero-desc {
    font-size: 18px;
  }
  
  .hero-actions {
    justify-content: center;
    flex-direction: column;
    gap: 12px;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .hero-mockup-wrap {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 120px;
    padding-bottom: 64px;
  }
}

/* Mockup Showcase Window */
.mockup-window {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.mockup-header {
  background-color: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #cbd5e1;
}

.mockup-dot:nth-child(1) { background-color: #f87171; }
.mockup-dot:nth-child(2) { background-color: #fbbf24; }
.mockup-dot:nth-child(3) { background-color: #34d399; }

.mockup-address {
  margin-left: 24px;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 2px 16px;
  font-size: 11px;
  color: var(--text-muted);
  width: 250px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: monospace;
}

.mockup-body {
  padding: 0;
  position: relative;
}

.mockup-body img {
  border-radius: 0;
  width: 100%;
  display: block;
}

/* Trust Section (Quick Features bar) */
.trust-bar {
  border-bottom: 1px solid var(--border-color);
  padding: 40px 0;
  background-color: var(--bg-white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.trust-icon-wrapper {
  background-color: var(--primary-light);
  color: var(--secondary);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-item h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.trust-item p {
  font-size: 14px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Features Grid Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-card:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  background-color: var(--secondary-light);
  color: var(--secondary);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
}

.feature-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
  font-family: 'Outfit', sans-serif;
}

.feature-card p {
  font-size: 13.5px;
  color: var(--text-gray);
  margin-bottom: 16px;
  line-height: 1.45;
}

.feature-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.feature-link:hover {
  color: var(--secondary);
}

@media (max-width: 991px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-card {
    padding: 20px;
  }
}

/* Video Showcase Section */
.video-section {
  background-color: var(--text-dark);
  color: var(--bg-white);
  padding: 96px 0;
}

.video-section h2 {
  color: var(--bg-white);
}

.video-section .section-subtitle {
  color: var(--text-light);
}

.video-container {
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  position: relative;
  background-color: #000;
  border: 1px solid #334155;
}

.video-element {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
}

.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(15, 23, 42, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  gap: 16px;
  z-index: 10;
}

.video-play-overlay:hover {
  background-color: rgba(15, 23, 42, 0.6);
}

.video-play-overlay.playing {
  opacity: 0;
  pointer-events: none;
}

.play-btn {
  width: 72px;
  height: 72px;
  background-color: var(--primary);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(9, 157, 133, 0.4);
  transition: var(--transition);
}

.video-play-overlay:hover .play-btn {
  transform: scale(1.1);
  background-color: var(--primary-hover);
}

.play-btn svg {
  margin-left: 4px; /* offset play icon center */
}

/* Grid Screenshot Showcase */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.gallery-card {
  display: flex;
  flex-direction: column;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.gallery-card:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.gallery-image-wrap {
  width: 100%;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.gallery-image-wrap img {
  width: 100%;
  display: block;
}

.gallery-card-content {
  padding: 16px 4px 4px 4px;
}

.gallery-card-content h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-family: 'Outfit', sans-serif;
}

.gallery-card-content p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.45;
}

@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Role / Audience Cards */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.role-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.role-header {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--bg-slate);
  padding-bottom: 20px;
}

.role-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: var(--primary-light);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.role-title-wrap h3 {
  font-size: 18px;
  margin-bottom: 2px;
}

.role-title-wrap p {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.role-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.role-bullets li {
  font-size: 14px;
  color: var(--text-gray);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.role-bullets li svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}

@media (max-width: 991px) {
  .roles-grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ Accordion */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background-color: var(--bg-white);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--text-light);
}

.faq-item[open] {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  outline: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon-toggle {
  transition: transform 0.2s ease;
  color: var(--text-muted);
}

.faq-item[open] .faq-icon-toggle {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  padding: 0 24px 20px 24px;
  font-size: 15px;
  color: var(--text-gray);
  border-top: 1px solid transparent;
}

/* Contact Section Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 48px;
  align-items: stretch;
  margin-top: 48px;
}

.contact-info-card {
  background-color: var(--secondary);
  color: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-card h3 {
  color: var(--bg-white);
  font-size: 24px;
  margin-bottom: 16px;
}

.contact-info-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-detail-item .contact-icon {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--bg-white);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-item h4 {
  color: var(--bg-white);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 2px;
}

.contact-detail-item a, .contact-detail-item span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 600;
}

.contact-detail-item a:hover {
  color: var(--primary-light);
}

.contact-form-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input, .form-group textarea {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  font-size: 15px;
  font-family: inherit;
  color: var(--text-dark);
  outline: none;
  background-color: var(--bg-light);
  transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
  border-color: var(--primary);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(9, 157, 133, 0.1);
}

@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-form-card, .contact-info-card {
    padding: 24px;
  }
}

/* Call to Action Banner */
.cta-banner {
  background-color: var(--secondary);
  color: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-banner-content {
  max-width: 650px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  color: var(--bg-white);
  font-size: 36px;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto 24px auto;
}

.cta-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.2);
  background-color: rgba(255,255,255,0.1);
  color: var(--bg-white);
  font-size: 15px;
  outline: none;
  font-family: inherit;
  transition: var(--transition);
}

.cta-form input::placeholder {
  color: rgba(255,255,255,0.6);
}

.cta-form input:focus {
  background-color: var(--bg-white);
  color: var(--text-dark);
  border-color: var(--bg-white);
}

.cta-form .btn {
  background-color: var(--primary);
  color: var(--bg-white);
  border: none;
}

.cta-form .btn:hover {
  background-color: var(--primary-hover);
}

.cta-note {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

@media (max-width: 600px) {
  .cta-banner {
    padding: 40px 20px;
  }
  .cta-banner h2 {
    font-size: 28px;
  }
  .cta-banner p {
    font-size: 16px;
  }
  .cta-form {
    flex-direction: column;
  }
}

/* Footer */
.footer {
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-color);
  padding: 80px 0 40px 0;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 64px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-info p {
  color: var(--text-muted);
  max-width: 280px;
}

.footer-column h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 40px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* Splash Screen Styles */
body.splash-active {
  overflow: hidden;
}

.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s cubic-bezier(0.85, 0, 0.15, 1), visibility 0.8s cubic-bezier(0.85, 0, 0.15, 1);
}

.splash-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  animation: splash-intro 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.splash-logo {
  height: 90px;
  width: auto;
  border-radius: 0;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
}

.splash-title {
  font-family: 'Outfit', sans-serif;
  color: var(--bg-white);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.splash-dot {
  color: var(--secondary);
}

/* Animations */
@keyframes splash-intro {
  0% {
    opacity: 0;
    transform: scale(0.7) translateY(10px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Exit State with dramatic Zoom & Fade */
.splash-screen.exit {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-screen.exit .splash-content {
  transform: scale(4.5);
  opacity: 0;
  filter: blur(8px);
  transition: transform 0.9s cubic-bezier(0.85, 0, 0.15, 1), opacity 0.8s cubic-bezier(0.85, 0, 0.15, 1), filter 0.8s cubic-bezier(0.85, 0, 0.15, 1);
}

/* FormSubmit Loading Spinner */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
