/* Base Styles and Variables */
:root {
    /* Primary Colors */
    --burnt-orange: #BE5103;
    --midnight-blue: #272757;
    --charcoal-gray: #4A4A4A;
    --beige: #EDE8D0;
    --white: #FFFFFF;
    
    /* Secondary Colors */
    --sage-green: #9DC183;
    --dusty-rose: #DCA1A1;
    
    /* Text Colors */
    --heading-text: #1F1F1F;
    --body-text: #4A4A4A;
    
    /* Background Colors */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F6F4EE;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Typography */
body {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    color: var(--body-text);
    line-height: 1.6;
    background-color: var(--bg-primary);
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    color: var(--heading-text);
    margin-bottom: 0.5rem;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.75rem;
    line-height: 1.4;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--midnight-blue);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--burnt-orange);
}

.eyebrow {
    font-family: 'DM Mono', monospace;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--burnt-orange);
    margin-bottom: 0.5rem;
    display: block;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Section Spacing */
section {
    padding: 5rem 0;
    margin-bottom: 0rem; /* Add 0rem of margin between sections */
}

/* Remove margin from the last section before footer */
section:last-of-type {
    margin-bottom: 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-family: 'DM Mono', monospace;
    font-weight: 500;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 2.5rem;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    font-family: 'DM Mono', monospace;
    font-weight: 500;
    font-size: 0.9rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--charcoal-gray);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    padding-top: 8rem;
    padding-bottom: 8rem;
    background-color: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    color: var(--midnight-blue);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--charcoal-gray);
    margin-bottom: 1.5rem;
}

.hero-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    padding: 24px;
    background-color: var(--beige);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.hero-background {
    position: absolute;
    top: 3rem; 
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top;
    opacity: 0.25;
}

/* Hero Image Animation */
.hero-image {
  position: relative;
  overflow: hidden;
}

/* Shine effect */
.hero-shine {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.6) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: translateX(-100%) skewX(-20deg);
  pointer-events: none;
  z-index: 2;
}

/* Enhanced Hero Animation Styles */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* Particles */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 50px;
  height: 50px;
  background: var(--beige);
  border-radius: 50%;
  opacity: 0.1;
  mix-blend-mode: overlay;
}

/* Refined shine effect */
.hero-shine {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.6) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-20deg) translateX(-100%);
  z-index: 2;
  pointer-events: none;
}

/* Letter animation prep */
.hero-content h1 .letter {
  display: inline-block;
  opacity: 0;
}

/* Hero button glow effect */
.hero-content .btn-primary {
  position: relative;
}

.hero-content .btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background: var(--burnt-orange);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.hero-content .btn-primary:hover::after {
  opacity: 0.4;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.1); opacity: 0.2; }
  100% { transform: scale(1); opacity: 0.4; }
}

/* How It Works Section */
.how-it-works-section {
    background-color: var(--bg-secondary);
    padding: 5rem 0;
}

.how-it-works-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 100%;
}

.step-card {
    width: 100%;
    margin-bottom: 2rem;
}

.step-card-inner {
    display: flex;
    align-items: center;
    gap: 3rem;
    background-color: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card-inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-card-inner.reverse {
    flex-direction: row-reverse;
}

.step-card-content {
    flex: 1;
}

.step-number {
    display: block;
    font-family: 'DM Mono', monospace;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--burnt-orange);
    margin-bottom: 0.5rem;
}

.step-card-content h3 {
    color: var(--midnight-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.step-card-content p {
    color: var(--charcoal-gray);
    font-size: 1.1rem;
    line-height: 1.6;
}

.step-card-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.step-card-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-caption {
    margin-top: 1rem;
    color: var(--charcoal-gray);
    font-size: 0.9rem;
    font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .step-card-inner {
        flex-direction: column;
        gap: 2rem;
    }

    .step-card-inner.reverse {
        flex-direction: column;
    }

    .step-card-content {
        text-align: center;
    }

    .step-card-image {
        max-width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .step-card-image {
        max-width: 100%;
    }
}

/* Features Section */
.features-section {
    background-color: var(--bg-primary);
    padding: 5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

/* Enhanced feature card styling with hover effects */
.feature-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
              box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
              background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--beige);
  opacity: 0;
  z-index: 0;
  transition: opacity 0.3s ease;
}

.feature-card h3, .feature-card p {
  position: relative;
  z-index: 1;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(190, 81, 3, 0.1);
}

.feature-card:hover::before {
  opacity: 0.25;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--midnight-blue);
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--charcoal-gray);
    font-size: 1rem;
    line-height: 1.6;
}

/* Integrations Section */
.integrations-section {
    background-color: var(--bg-secondary);
    padding: 5rem 0;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.integration-card {
    text-align: center;
    background-color: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.integration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.integration-image {
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.integration-image img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 60px;
    display: block;
    object-fit: contain;
}

.integration-card h3 {
    margin-bottom: 0.75rem;
    color: var(--midnight-blue);
}

/* Who Is It For Section */
.who-section {
    background-color: var(--bg-primary);
    padding: 5rem 0;
}

.section-subtitle {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
    font-size: 1.2rem;
    color: var(--charcoal-gray);
}

.who-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.who-column {
    text-align: left;
    background-color: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.who-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.who-image {
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.who-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/10;
}

.who-column h3 {
    margin-bottom: 1rem;
    color: var(--midnight-blue);
    text-align: center;
}

.who-list {
    list-style-position: outside;
    padding-left: 1.5rem;
}

.who-list li {
    position: relative;
}

/* CTA Hero Section */
.cta-hero-section {
    background-color: var(--bg-secondary);
    margin-top: 5rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
    text-align: center;
}

.cta-hero-content {
    margin-bottom: 0;
    max-width: 700px;
}

.cta-hero-section .waitlist-form {
    margin: 2rem auto 0;
    display: flex;
    justify-content: center;
    max-width: 500px;
}

.cta-hero-section .waitlist-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    border: 1px solid #ddd;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
}

.cta-hero-section .hero-content h2 {
    color: var(--midnight-blue);
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background-color: var(--bg-secondary);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 2.5rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
}

/* Reports Features Section Animation Styles */
.reports-section .feature-card {
  transition: box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  opacity: 0;
}

.reports-section .feature-icon {
  opacity: 0;
}

.reports-section .report-image {
  opacity: 0;
}

.reports-section .section-title {
  opacity: 0;
}

/* Initial opacity settings for animations */
.integrations-section .section-title,
.integrations-section .integration-card,
.integration-image img,
.who-section .section-title,
.who-section .section-subtitle,
.who-section .who-column,
.who-list li {
    opacity: 0;
}

/* Cards overlaid on the image */
.who-section-image-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 4rem auto 0;
  min-height: 500px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.who-section-image-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/finance-professional.png');
  background-size: cover;
  background-position: center;
  z-index: 1;
  filter: brightness(0.9);
}

.who-cards-overlay {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 3rem;
}

.who-cards-overlay .who-column {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .who-cards-overlay {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
  
  .who-section-image-container {
    min-height: auto;
  }
}

/* Card highlight effect for anime.js animation */
.card-highlight {
  position: absolute;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, transparent, var(--burnt-orange), transparent);
  bottom: 0;
  left: 50%;
  opacity: 0;
  pointer-events: none;
}

/* Legal Pages Styles */
.legal-section {
    padding: 8rem 0 5rem;
    background-color: var(--bg-secondary);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.legal-content h1 {
    color: var(--midnight-blue);
    margin-bottom: 0.5rem;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: var(--charcoal-gray);
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

.legal-section-content {
    color: var(--body-text);
}

.legal-section-content h2 {
    color: var(--midnight-blue);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.legal-section-content h2:first-of-type {
    margin-top: 0;
}

.legal-section-content h3 {
    color: var(--midnight-blue);
    margin: 1.5rem 0 1rem;
    font-size: 1.2rem;
}

.legal-section-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.legal-section-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Responsive adjustments for legal pages */
@media (max-width: 992px) {
    .legal-content {
        padding: 2rem;
        margin: 0 1rem;
    }
}

@media (max-width: 768px) {
    .legal-section {
        padding: 6rem 0 3rem;
    }

    .legal-content {
        padding: 1.5rem;
    }

    .legal-section-content h2 {
        font-size: 1.3rem;
    }

    .legal-section-content h3 {
        font-size: 1.1rem;
    }
} 