/* =============================================
   Project Athena — Standalone Stylesheet
   Self-contained; does not depend on main.css
   ============================================= */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

[hidden] { display: none !important; }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 2. CSS Variables
   ============================================= */
:root {
    /* DAB brand palette */
    --primary:    #2E8B57;  /* Emerald Green */
    --navy:       #1A1F36;  /* Deep Navy */
    --gold:       #DCC48E;  /* Golden Beige */
    --beige:      #F8F5F0;  /* Soft Beige */
    --mint:       #C9E4CA;  /* Pale Mint */
    --text-dark:  #2C3E50;
    --text-mid:   #4A5568;
    --text-muted: #6C757D;
    --white:      #FFFFFF;
    --border:     #E9ECEF;

    /* Athena-specific tokens */
    --hero-start:    #1A1F36;
    --hero-end:      #252B4A;
    --footer-bg:     #12172A;
    --card-radius:   1.25rem;
    --transition:    0.25s cubic-bezier(0.4, 0, 0.2, 1);

    /* Typography */
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
}

/* 3. Typography Base
   ============================================= */
body {
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 700;
    color: var(--text-dark);
}

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

ul {
    list-style: none;
}

/* 4. Layout Utilities
   ============================================= */
.container {
    width: 100%;
    max-width: 1140px;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.section-eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--text-muted);
    max-width: 56ch;
    margin-inline: auto;
    line-height: 1.65;
}

/* 5. Entrance Animations
   ============================================= */
[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

[data-animate-delay="1"] { transition-delay: 0.1s; }
[data-animate-delay="2"] { transition-delay: 0.2s; }
[data-animate-delay="3"] { transition-delay: 0.3s; }
[data-animate-delay="4"] { transition-delay: 0.4s; }

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* 6. Shared Button Styles
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 0.5rem;
    font-family: var(--font);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background var(--transition), color var(--transition),
                border-color var(--transition), transform var(--transition),
                box-shadow var(--transition);
    white-space: nowrap;
}

.btn:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}

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

.btn-primary:hover {
    background: #25714a;
    border-color: #25714a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-ghost {
    background: transparent;
    color: rgba(255,255,255,0.85);
    border-color: rgba(255,255,255,0.35);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}

/* 7. Header
   ============================================= */
.athena-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem 0;
}

.athena-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
    flex-shrink: 0;
}

.header-brand-logo {
    height: 32px;
    width: auto;
}

.header-brand-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.01em;
}

.header-product {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.header-cta {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    flex-shrink: 0;
}

/* 8. Hero Section
   ============================================= */
.athena-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--hero-start) 0%, var(--hero-end) 100%);
    overflow: hidden;
    padding-top: 5rem; /* clear header */
}

/* Subtle grid mesh overlay */
.athena-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* Radial glow accent */
.athena-hero::after {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 55%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(46,139,87,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-block: 5rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    border-radius: 999px;
    border: 1px solid rgba(220, 196, 142, 0.4);
    background: rgba(220, 196, 142, 0.1);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    width: fit-content;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.85); }
}

.hero-headline {
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.hero-headline em {
    font-style: normal;
    color: var(--gold);
}

.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: rgba(255,255,255,0.7);
    font-weight: 300;
    line-height: 1.7;
    max-width: 50ch;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-learn-more {
    color: rgba(255,255,255,0.65);
    font-size: 0.9375rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    transition: color var(--transition);
}

.hero-learn-more:hover {
    color: var(--white);
}

/* Hero visual / screenshot placeholder */
.hero-visual {
    position: relative;
}

.hero-screenshot {
    width: 100%;
    border-radius: var(--card-radius);
    box-shadow: 0 32px 64px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.07);
}

.hero-screenshot-placeholder {
    width: 100%;
    aspect-ratio: 16/10;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--card-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.3);
    font-size: 0.875rem;
    text-align: center;
    padding: 2rem;
    box-shadow: 0 32px 64px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.06);
    backdrop-filter: blur(4px);
}

.hero-screenshot-placeholder svg {
    opacity: 0.25;
}

.hero-screenshot-placeholder p {
    font-size: 0.8125rem;
    font-style: italic;
}

/* 9. Problem Statement Section
   ============================================= */
.problem-section {
    background: var(--beige);
    padding: 5rem 0;
}

.problem-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.problem-statement {
    background: var(--white);
    border-radius: var(--card-radius);
    padding: 2rem;
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow-sm);
}

.problem-quote-mark {
    font-size: 3rem;
    line-height: 1;
    color: var(--primary);
    opacity: 0.25;
    font-family: Georgia, serif;
    margin-bottom: 0.5rem;
}

.problem-statement p {
    font-size: 1.0625rem;
    color: var(--text-dark);
    line-height: 1.6;
    font-style: italic;
}

.problem-statement p em {
    font-style: normal;
    font-weight: 600;
    color: var(--primary);
}

.problem-pivot {
    text-align: center;
    margin-top: 0;
}

.problem-pivot p {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 600;
    color: var(--text-dark);
}

.problem-pivot em {
    font-style: normal;
    color: var(--primary);
}

/* 10. Features Section
   ============================================= */
.features-section {
    background: var(--white);
    padding: 5rem 0;
}

.features-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.features-header .section-eyebrow {
    color: var(--primary);
}

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

.feature-card {
    background: var(--beige);
    border-radius: var(--card-radius);
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid var(--border);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 0.875rem;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    flex-shrink: 0;
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 0.9375rem;
    color: var(--text-mid);
    line-height: 1.65;
}

.feature-screenshot {
    margin-top: 0.75rem;
    width: 100%;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.feature-illustration-placeholder {
    margin-top: 0.5rem;
    width: 100%;
    height: 140px;
    border-radius: 0.75rem;
    background: rgba(46,139,87,0.07);
    border: 1.5px dashed rgba(46,139,87,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-style: italic;
}

/* 11. Differentiation Section
   ============================================= */
.diff-section {
    background: linear-gradient(135deg, var(--hero-start) 0%, var(--hero-end) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.diff-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.diff-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.diff-header .section-eyebrow {
    color: var(--gold);
}

.diff-header .section-title {
    color: var(--white);
}

.diff-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.diff-col {
    border-radius: var(--card-radius);
    padding: 2.25rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.diff-col--raw {
    background: rgba(255,255,255,0.04);
}

.diff-col--athena {
    background: rgba(46,139,87,0.12);
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary);
}

.diff-col-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.diff-col-label h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--white);
}

.diff-col-label .diff-tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
}

.diff-col--raw .diff-tag {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
}

.diff-col--athena .diff-tag {
    background: var(--primary);
    color: var(--white);
}

.diff-list {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.diff-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.diff-col--raw .diff-list li {
    color: rgba(255,255,255,0.55);
}

.diff-col--athena .diff-list li {
    color: rgba(255,255,255,0.9);
}

.diff-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
    font-weight: 700;
}

.diff-col--raw .diff-check {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.3);
}

.diff-col--athena .diff-check {
    background: var(--primary);
    color: var(--white);
}

.diff-pull-quote {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin-inline: auto;
}

.diff-pull-quote p {
    font-size: clamp(1.25rem, 2.5vw, 1.625rem);
    font-style: italic;
    font-weight: 300;
    color: var(--gold);
    line-height: 1.5;
}

/* 12. Credibility Section
   ============================================= */
.credibility-section {
    background: var(--mint);
    padding: 5rem 0;
}

.credibility-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.credibility-header .section-eyebrow {
    color: var(--primary);
}

.credibility-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.founder-card {
    background: var(--white);
    border-radius: var(--card-radius);
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    box-shadow: var(--shadow-md);
}

.founder-photo-wrap {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.founder-photo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    flex-shrink: 0;
}

.founder-photo-placeholder {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--beige);
    border: 3px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    flex-shrink: 0;
}

.founder-meta h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-dark);
}

.founder-meta p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.founder-bio {
    font-size: 0.9375rem;
    color: var(--text-mid);
    line-height: 1.65;
}

.methodology-card {
    background: var(--white);
    border-radius: var(--card-radius);
    padding: 2.25rem;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.methodology-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
}

.methodology-card p {
    font-size: 0.9375rem;
    color: var(--text-mid);
    line-height: 1.65;
}

.methodology-points {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.methodology-point {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-mid);
}

.methodology-point-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--mint);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.methodology-diagram-placeholder {
    width: 100%;
    height: 160px;
    border-radius: 0.75rem;
    border: 1.5px dashed rgba(46,139,87,0.3);
    background: var(--beige);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-style: italic;
    text-align: center;
    padding: 1rem;
}

/* 13. Waitlist Section
   ============================================= */
.waitlist-section {
    background: linear-gradient(135deg, var(--hero-start) 0%, var(--hero-end) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.waitlist-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.waitlist-inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin-inline: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.waitlist-inner .section-eyebrow {
    color: var(--gold);
}

.waitlist-inner .section-title {
    color: var(--white);
}

.waitlist-desc {
    color: rgba(255,255,255,0.65);
    font-size: 1rem;
    line-height: 1.65;
}

.waitlist-form-wrap {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--card-radius);
    padding: 2rem;
}

.waitlist-form-row {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.waitlist-input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.waitlist-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: 0.5rem;
    color: var(--white);
    font-family: var(--font);
    font-size: 0.9375rem;
    transition: border-color var(--transition), background var(--transition);
}

.waitlist-input::placeholder {
    color: rgba(255,255,255,0.35);
}

.waitlist-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255,255,255,0.1);
}

.waitlist-input.is-invalid {
    border-color: #e05f5f;
}

.field-error {
    font-size: 0.8rem;
    color: #f08080;
    text-align: left;
    min-height: 1.2em;
}

.waitlist-submit {
    padding: 0.75rem 1.5rem;
    flex-shrink: 0;
    align-self: flex-start;
    font-size: 0.9375rem;
}

.waitlist-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.waitlist-privacy {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
}

.waitlist-success {
    animation: fadeIn 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
}

.waitlist-success .success-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.waitlist-success p {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    line-height: 1.6;
}

.waitlist-success strong {
    color: var(--white);
    display: block;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.waitlist-error {
    font-size: 0.875rem;
    color: #f08080;
    margin-top: 0.5rem;
    animation: fadeIn 0.3s ease;
}

/* 14. Footer
   ============================================= */
.athena-footer {
    background: var(--footer-bg);
    padding: 2.5rem 0 2rem;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    margin-bottom: 1.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-brand:hover {
    color: rgba(255,255,255,0.9);
}

.footer-brand-logo {
    height: 28px;
    width: auto;
    opacity: 0.6;
}

.footer-brand:hover .footer-brand-logo {
    opacity: 0.85;
}

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

.footer-links a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.45);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: rgba(255,255,255,0.8);
}

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

.footer-copy {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.25);
    line-height: 1.6;
}

/* 15. Media Queries
   ============================================= */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-block: 4rem 3rem;
    }

    .hero-visual {
        max-width: 520px;
        margin-inline: auto;
        width: 100%;
    }

    .problem-section .container {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-inline: auto;
    }

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

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

@media (max-width: 768px) {
    .header-product {
        display: none;
    }

    .waitlist-form-row {
        flex-direction: column;
    }

    .waitlist-submit {
        align-self: stretch;
        justify-content: center;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .footer-bottom {
        text-align: left;
    }

    .athena-hero {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-learn-more {
        width: auto;
    }

    .founder-photo-wrap {
        flex-direction: column;
        align-items: flex-start;
    }
}
