/* About Page Styles */

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

/* Main Content Wrapper */
.about-us-content {
    background-color: #121212;
    color: #E0E0E0;
    min-height: 100vh;
}

.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

/* Typography */
.about-us-content h1 {
    font-size: 2.8em;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 40px;
}

.about-us-content h2 {
    font-size: 2.2em;
    color: #32CD32; /* Accent green color */
    margin-bottom: 25px;
    margin-top: 50px;
    border-bottom: 1px solid #2a2a2a;
    padding-bottom: 10px;
}

.about-us-content h3 {
    font-size: 1.5em;
    color: #FFFFFF;
    margin-bottom: 10px;
    margin-top: 15px;
}

.about-us-content h4 {
    font-size: 1.1em;
    color: #a0a0a0;
    margin-bottom: 10px;
    font-weight: normal;
}

.about-us-content p {
    font-size: 1em;
    line-height: 1.7;
    color: #E0E0E0;
    margin-bottom: 15px;
}

.about-us-content a {
    color: #32CD32;
    text-decoration: none;
    transition: color 0.3s ease;
}

.about-us-content a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

/* Section Spacing */
.about-us-content > section {
    margin-bottom: 60px;
}

.about-us-content > section:last-child {
    margin-bottom: 0;
}

/* Page Title Section */
.page-title-section {
    text-align: center;
    padding: var(--spacing-32) 0;
    background-color: #121212;
}

/* Intro Pitch Section */
.intro-pitch-section {
    padding: var(--spacing-20) 0;
    background-color: #1A1A1A;
}

.intro-pitch {
    font-size: 1.25em;
    line-height: 1.8;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 300;
}

/* Story Section */
.story-section {
    padding: var(--spacing-20) 0;
}

.layout-two-column {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.layout-two-column .column {
    flex: 1;
    min-width: 300px;
}

.story-image-placeholder {
    height: 350px;
    background-color: #181818;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    border: 2px dashed #1ED760;
    border-radius: 12px;
    font-style: italic;
    box-shadow: 0 0 16px 0 rgba(30,215,96,0.08), 0 0 0 4px rgba(30,215,96,0.07);
    transition: box-shadow 0.3s;
}

.story-image-placeholder:hover {
    box-shadow: 0 0 32px 4px rgba(30,215,96,0.18);
    background-color: #202820;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: var(--spacing-20) 0;
    background-color: #1A1A1A;
}

.mission-block, .vision-block {
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: var(--spacing-8);
    background-color: #121212;
    border-radius: var(--border-radius-lg);
}

/* Values Section - Removing as it's being combined */

/* Team Section */
.team-section {
    padding: var(--spacing-20) 0;
    background-color: #1A1A1A;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: var(--spacing-12);
}

.team-member-card {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #2a2a2a;
}

.team-member-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
    border: 3px solid #32CD32;
}

.team-summary {
    margin-top: 30px;
    text-align: center;
    font-style: italic;
    color: #E0E0E0;
    font-size: var(--font-size-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Approach Section */
.approach-section {
    padding: var(--spacing-20) 0;
}

.approach-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.approach-step {
    background-color: #1a1a1a;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #32CD32;
}

.step-number {
    display: block;
    font-size: 1.8em;
    color: #32CD32;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Advantage Section - Updated as "Our Philosophy & Your Advantage" */
.advantage-section {
    padding: 60px 0;
    background-color: #1A1A1A;
    border-radius: 12px;
    margin: 40px auto;
}

.advantage-section h2 {
    text-align: center;
    color: #1ED760;
    margin-bottom: 40px;
    font-size: 2em;
    font-weight: 600;
}

.advantage-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    padding: 0 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.advantage-list li {
    background: #121212;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #2a2a2a;
    transition: all 0.3s ease;
}

.advantage-list li:hover {
    transform: translateY(-5px);
    border-color: #1ED760;
    box-shadow: 0 5px 20px rgba(30,215,96,0.1);
}

.advantage-list li strong {
    color: #FFFFFF;
    display: block;
    margin-bottom: 12px;
    font-size: 1.2em;
    position: relative;
    padding-left: 25px;
}

.advantage-list li strong::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #1ED760;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: linear-gradient(45deg, #181818, #121212);
    padding: 60px 40px;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    margin-top: 60px;
}

.cta-section h2 {
    color: #FFFFFF;
    font-size: 2.2em;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-section p {
    color: #E0E0E0;
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: #1ED760;
    color: #121212;
    padding: 18px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1em;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button:hover {
    background-color: transparent;
    color: #1ED760;
    border-color: #1ED760;
    transform: translateY(-2px);
}

/* Hero Section */
.about-hero-section {
    background-color: #1A1A1A;
    padding: 120px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #121212, #1A1A1A);
}

.about-hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(30,215,96,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content-container h1 {
    font-size: 3.5em;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-tagline {
    font-size: 1.4em;
    color: #E0E0E0;
    line-height: 1.6;
    font-weight: 300;
}

/* Hero Title Animation */
.hero-title {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease-out forwards;
}

.hero-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease-out forwards;
    animation-delay: calc(var(--i) * 0.1s);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Founder Section */
.founder-section {
    margin: -60px auto 60px;
    background: #181818;
    border-radius: 12px;
    padding: 40px;
    max-width: 1000px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    border: 1px solid #2a2a2a;
}

.founder-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
}

.founder-image-placeholder {
    width: 200px;
    height: 200px;
    background-color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    border: 2px solid #1ED760;
    box-shadow: 0 0 20px rgba(30,215,96,0.1);
    transition: all 0.3s ease;
}

.founder-image-placeholder:hover {
    box-shadow: 0 0 30px rgba(30,215,96,0.2);
    transform: scale(1.02);
}

.founder-bio h3 {
    color: #FFFFFF;
    font-size: 1.8em;
    margin-bottom: 8px;
    font-weight: 600;
}

.founder-bio h4 {
    color: #1ED760;
    font-size: 1.1em;
    margin-bottom: 20px;
    font-weight: 500;
}

.founder-welcome {
    font-style: italic;
    color: #E0E0E0;
    font-size: 1.2em;
    line-height: 1.6;
    padding: 20px;
    background: rgba(30,215,96,0.05);
    border-radius: 8px;
    border-left: 3px solid #1ED760;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content-container h1 {
        font-size: 3em;
    }
    
    .advantage-list {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        padding: 80px 20px;
    }
    
    .hero-content-container h1 {
        font-size: 2.5em;
    }
    
    .founder-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .founder-image-placeholder {
        margin: 0 auto;
    }
    
    .advantage-list li {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .about-hero-section {
        padding: 60px 15px;
    }
    
    .hero-content-container h1 {
        font-size: 2em;
    }
    
    .hero-tagline {
        font-size: 1.2em;
    }
    
    .founder-section {
        padding: 30px 20px;
        margin-top: -40px;
    }
    
    .founder-image-placeholder {
        width: 160px;
        height: 160px;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

/* About Page Styles - Snappy Version */

.about-us-content-snappy {
    background-color: #121212;
    color: #E0E0E0;
    min-height: 100vh;
    padding: 0 20px 60px;
}

/* Hero Section */
.about-hero-snappy {
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('assets/images/aboutback.png');
    background-size: cover;
    background-position: center;
    position: relative;
    margin: 0 -20px; /* Compensate for page padding */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.85));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hero-overlay h1 {
    font-size: 3.5em;
    color: #FFFFFF;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    font-weight: 700;
    line-height: 1.2;
    max-width: 900px;
}

.hero-subheadline {
    font-size: 1.4em;
    color: #E0E0E0;
    max-width: 700px;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
    margin: 0 auto;
}

/* Founder's Vision Section */
.founder-vision-section {
    margin-top: 70px;
    margin-bottom: 70px;
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.founder-container.layout-two-column-reversed {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap-reverse;
}

.founder-image-area.column,
.founder-statement.column {
    flex: 1;
    min-width: 300px;
}

.founder-image-placeholder-snappy {
    width: 250px;
    height: 250px;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    border: 3px solid #1ED760;
    border-radius: 50%;
    margin: 0 auto;
    font-style: italic;
    box-shadow: 0 0 30px rgba(30,215,96,0.1);
    transition: all 0.3s ease;
}

.founder-image-placeholder-snappy:hover {
    box-shadow: 0 0 40px rgba(30,215,96,0.2);
    transform: scale(1.02);
}

.founder-statement h2 {
    color: #1ED760;
    font-size: 2em;
    margin-bottom: 20px;
    line-height: 1.2;
}

.founder-statement p {
    font-size: 1.1em;
    margin-bottom: 15px;
    line-height: 1.7;
    color: #E0E0E0;
}

.founder-statement p em {
    display: block;
    text-align: right;
    margin-top: 20px;
    color: #a0a0a0;
    font-size: 0.9em;
}

/* Principles Section */
.principles-edge-section {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(to bottom, #121212, #1a1a1a);
    max-width: 1200px;
    margin: 0 auto;
}

.principles-edge-section h2 {
    color: #1ED760;
    font-size: 2.2em;
    margin-bottom: 40px;
    font-weight: 600;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.principle-item {
    background-color: #1a1a1a;
    padding: 30px 20px;
    border-radius: 8px;
    border: 1px solid #2a2a2a;
    transition: all 0.3s cubic-bezier(.4,2,.6,1);
}

.principle-item:hover {
    transform: scale(1.03);
    border-color: #22ff88;
    box-shadow: 0 8px 32px rgba(30,215,96,0.18);
}

.principle-icon-placeholder {
    font-size: 2.2em;
    color: #1ED760;
    margin-bottom: 15px;
    height: 35px;
}

.principle-item h3 {
    font-size: 1.3em;
    color: #FFFFFF;
    margin-bottom: 10px;
    font-weight: 600;
}

.principle-item p {
    font-size: 0.95em;
    line-height: 1.5;
    color: #E0E0E0;
}

/* CTA Section */
.cta-section-snappy {
    text-align: center;
    background-color: #1a1a1a;
    padding: 60px 20px;
    border-radius: 8px;
    margin-top: 60px;
    border-top: 3px solid #1ED760;
    background: linear-gradient(45deg, #181818, #1a1a1a);
}

.cta-section-snappy h2 {
    color: #FFFFFF;
    font-size: 2em;
    margin-bottom: 15px;
    font-weight: 600;
}

.cta-section-snappy p {
    font-size: 1.1em;
    margin-bottom: 25px;
    color: #E0E0E0;
}

.cta-section-snappy .cta-button {
    display: inline-block;
    background-color: #1ED760;
    color: #121212;
    padding: 18px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1em;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-section-snappy .cta-button:hover {
    background-color: transparent;
    color: #1ED760;
    border-color: #1ED760;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-overlay h1 {
        font-size: 3em;
    }
    
    .hero-subheadline {
        font-size: 1.2em;
    }
    
    .founder-statement h2 {
        font-size: 1.8em;
    }
}

@media (max-width: 768px) {
    .about-hero-snappy {
        height: auto;
        min-height: 350px;
    }
    
    .hero-overlay h1 {
        font-size: 2.5em;
    }
    
    .founder-container.layout-two-column-reversed {
        gap: 30px;
    }
    
    .founder-image-placeholder-snappy {
        width: 200px;
        height: 200px;
    }
    
    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .about-us-content-snappy {
        padding: 0 15px 40px;
    }
    
    .hero-overlay h1 {
        font-size: 2em;
    }
    
    .hero-subheadline {
        font-size: 1.1em;
    }
    
    .founder-image-placeholder-snappy {
        width: 180px;
        height: 180px;
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section-snappy .cta-button {
        width: 100%;
        max-width: 300px;
        padding: 15px 30px;
    }
}

/* Print Styles */
@media print {
    .about-us-content-snappy {
        background: white;
        color: black;
    }
    
    .about-hero-snappy {
        height: auto;
        min-height: 0;
    }
    
    .hero-overlay {
        position: static;
        background: none;
    }
    
    .cta-section-snappy {
        break-inside: avoid;
    }
}

/* --- FOUNDER SECTION LAYOUT & TYPOGRAPHY ENHANCEMENTS --- */

/* More breathing room above and below founder section */
.founder-vision-section {
    margin-top: 70px;
    margin-bottom: 70px;
    padding: 60px 0;
}

/* Limit width of text block for better balance */
.founder-text-block {
    max-width: 480px;
    width: 100%;
    margin-left: 0;
    margin-right: auto;
    text-align: left;
}

/* Ensure heading and quote are left-aligned */
.founder-text-block h2,
.founder-text-block p {
    text-align: left;
}

/* Signature styling */
.founder-statement em {
    display: block;
    margin-top: 18px;
    text-align: left;
    font-style: normal;
}

.founder-name {
    font-size: 1.15em;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.01em;
}

.founder-title {
    font-size: 1em;
    font-weight: 400;
    color: #a0a0a0;
    margin-left: 6px;
}

/* Responsive: stack columns and center text on mobile */
@media (max-width: 900px) {
    .founder-container.layout-two-column-reversed {
        flex-direction: column-reverse;
        align-items: center;
        gap: 32px;
    }
    .founder-text-block {
        max-width: 100%;
        text-align: center;
    }
    .founder-text-block h2,
    .founder-text-block p {
        text-align: center;
    }
    .founder-statement em {
        text-align: center;
    }
}

/* --- PRINCIPLES CARD HOVER ENHANCEMENT --- */
.principle-item {
    transition: all 0.3s cubic-bezier(.4,2,.6,1);
}
.principle-item:hover {
    transform: scale(1.03);
    border-color: #22ff88;
    box-shadow: 0 8px 32px rgba(30,215,96,0.18);
}

/* Section Separator - Visual HR for Section Breaks */
.section-separator {
    border: none;
    height: 1.5px;
    background-color: rgba(255,255,255,0.10); /* Subtle light line for dark background */
    width: 80%;
    margin: 48px auto 48px auto;
    border-radius: 2px;
}

/* About Hero */
.about-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, #101010 60%, var(--color-primary) 100%);
  color: #fff;
  padding: 4rem 2rem 2rem 2rem;
}
.about-hero-content {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.about-hero-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 24px rgba(30,215,96,0.12);
  border: 3px solid var(--color-primary);
}
.about-hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.about-hero-intro {
  font-size: 1.2rem;
  color: #e0e0e0;
  max-width: 500px;
}

/* Blackshire Edge */
.blackshire-edge {
  background: #181818;
  padding: 3rem 2rem;
  text-align: center;
}
.edge-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: var(--color-primary);
  letter-spacing: 0.04em;
}
.edge-cards {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  align-items: stretch;
}
.edge-card {
  background: rgba(20, 30, 20, 0.65);
  border-radius: 1.5rem;
  box-shadow: 0 4px 32px rgba(30,215,96,0.10), 0 1.5px 8px rgba(0,0,0,0.10);
  padding: 2.5rem 1.7rem 2.2rem 1.7rem;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1.5px solid rgba(50, 255, 160, 0.18);
  backdrop-filter: blur(8px);
  transition: box-shadow 0.35s, transform 0.35s, border 0.25s, background 0.35s;
  opacity: 1;
  transform: translateY(0);
  animation: edgeCardFadeIn 1.1s cubic-bezier(.4,2,.6,1) both;
}
@keyframes edgeCardFadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.edge-card:hover {
  box-shadow: 0 8px 40px 0 rgba(30,215,96,0.18), 0 2px 16px rgba(0,0,0,0.13);
  border: 2px solid #1ED760;
  background: rgba(30, 40, 30, 0.82);
  transform: translateY(-8px) scale(1.035);
}
.edge-card i {
  font-size: 2.4rem;
  color: #1ED760;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 2px 8px #1ed76044);
}
.edge-card h3 {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
  color: #fff;
  letter-spacing: 0.01em;
}
.edge-card p {
  color: #b0ffb0;
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .edge-cards {
    flex-direction: column;
    align-items: stretch;
    gap: 2rem;
  }
  .edge-card {
    max-width: 100%;
    min-width: 0;
  }
}

/* Quick Stats */
.about-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  background: #101010;
  padding: 2rem 0;
}
.stat {
  text-align: center;
}
.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  display: block;
}
.stat-label {
  color: #e0e0e0;
  font-size: 1rem;
}

/* CTA */
.about-cta {
  text-align: center;
  padding: 3rem 0 2rem 0;
}
.btn-lg {
  padding: 1.2rem 3rem;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 2rem;
}

/* Animations */
@media (prefers-reduced-motion: no-preference) {
  .edge-card {
    transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
  }
  .edge-card.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .about-hero-content, .edge-cards, .about-stats {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .about-hero-photo {
    margin-bottom: 1.5rem;
  }
}

/* --- Redesigned About Hero Section --- */
.redesigned-hero-section {
  position: relative;
  background: linear-gradient(120deg, #181818 60%, #1ed76022 100%);
  color: #fff;
  padding: 4rem 2rem 2rem 2rem;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(30,215,96,0.08);
  overflow: hidden;
  margin-bottom: 3rem;
}

.split-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.about-hero-photo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
}

.animated-glow {
  box-shadow: 0 0 32px 4px #1ED760, 0 4px 24px rgba(30,215,96,0.12);
  border: 4px solid #1ED760;
  border-radius: 50%;
  animation: glowPulse 2.5s infinite alternate;
}
@keyframes glowPulse {
  0% { box-shadow: 0 0 32px 4px #1ED760, 0 4px 24px rgba(30,215,96,0.12); }
  100% { box-shadow: 0 0 48px 12px #1ED760, 0 8px 32px rgba(30,215,96,0.18); }
}

.animate-fade-in {
  opacity: 0;
  animation: fadeIn 1.2s ease 0.2s forwards;
}
@keyframes fadeIn {
  to { opacity: 1; }
}

.animate-slide-in {
  opacity: 0;
  transform: translateY(40px);
  animation: slideInUp 1.2s cubic-bezier(.4,2,.6,1) 0.5s forwards;
}
@keyframes slideInUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-title-animated {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -1px;
  opacity: 0;
  animation: fadeUpTitle 1s 0.7s forwards;
}
@keyframes fadeUpTitle {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-intro-animated {
  font-size: 1.2rem;
  color: #e0e0e0;
  max-width: 500px;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUpIntro 1s 1.1s forwards;
}
@keyframes fadeUpIntro {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.about-hero-quote {
  font-size: 1.1rem;
  color: #b6ffce;
  font-style: italic;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpQuote 1s 1.5s forwards;
}
@keyframes fadeUpQuote {
  to { opacity: 1; transform: translateY(0); }
}

.hero-cta-animated {
  opacity: 0;
  transform: scale(0.95);
  animation: fadeInCta 1s 2s forwards;
  box-shadow: 0 2px 8px rgba(30,215,96,0.08);
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
}
.hero-cta-animated:hover {
  background: linear-gradient(90deg, #1ED760, #32CD32);
  color: #121212;
  box-shadow: 0 4px 16px rgba(30,215,96,0.18);
  transform: scale(1.04);
}
@keyframes fadeInCta {
  to { opacity: 1; transform: scale(1); }
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .split-layout {
    flex-direction: column;
    gap: 2.5rem;
  }
  .about-hero-photo-wrapper {
    min-width: 0;
  }
  .about-hero-text {
    text-align: center;
  }
}
@media (max-width: 600px) {
  .redesigned-hero-section {
    padding: 2rem 0.5rem 1rem 0.5rem;
  }
  .hero-title-animated {
    font-size: 1.5rem;
  }
  .about-hero-photo-wrapper img {
    width: 120px;
    height: 120px;
  }
} 