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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #26251E; /* Rangitoto */
    color: #F7F7F4; /* Cararra */
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    min-width: 1024px; /* Desktop only as requested */
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease-in-out;
}

a:hover {
    color: #F54E00; /* International Orange */
}

/* Typography */
h1 {
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

h2 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

p {
    font-size: 1.125rem;
    color: rgba(247, 247, 244, 0.7); /* Cararra with opacity */
    line-height: 1.6;
}

/* Layout Containers */
.container {
    width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* 1. Top Navigation Bar */
.navbar {
    display: flex;
    justify-content: center;
    padding: 20px 40px;
    background-color: #26251E;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.nav-left {
    display: flex;
    align-items: center;
}

.logo img {
    height: 24px;
    display: block;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(247, 247, 244, 0.8);
}

.nav-links a:hover {
    color: #F7F7F4;
}

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

.btn-signin {
    font-size: 0.95rem;
    font-weight: 500;
    color: #F7F7F4;
    padding: 8px 16px;
    border: 1px solid rgba(247, 247, 244, 0.2);
    border-radius: 30px;
}

.btn-signin:hover {
    border-color: #F7F7F4;
    color: #F7F7F4;
}

.btn-primary {
    background-color: #F7F7F4;
    color: #26251E;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: #e6e6e2;
    color: #26251E;
}

/* 2. Hero Section */
.hero {
    padding: 80px 40px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 60px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 30px;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #F7F7F4;
    color: #26251E;
    padding: 14px 24px;
    border-radius: 30px;
    font-size: 1.125rem;
    font-weight: 500;
}

.btn-hero:hover {
    background-color: #e6e6e2;
    color: #26251E;
}

.hero-image-container {
    width: 100%;
    max-width: 1200px;
}

.hero-image {
    width: 100%;
    display: block;
    border-radius: 12px;
    border: 1px solid rgba(247, 247, 244, 0.1);
}

/* 3. Trusted By / Logos */
.trusted-by {
    padding: 60px 40px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.trusted-by p {
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    margin-bottom: 40px;
    color: rgba(247, 247, 244, 0.5);
}

.logos-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
}

.logo-placeholder {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(247, 247, 244, 0.3);
}

/* 4. Feature Sections */
.feature-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 80px;
}

.feature-block.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-text h2 {
    font-size: 2.25rem;
}

.feature-image {
    flex: 1.2;
}

.feature-image img {
    width: 100%;
    display: block;
    border-radius: 12px;
    border: 1px solid rgba(247, 247, 244, 0.1);
}

/* 5. Feature Cards Section */
.feature-cards-section {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-cards-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

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

.card {
    background-color: rgba(247, 247, 244, 0.03);
    border: 1px solid rgba(247, 247, 244, 0.08);
    border-radius: 16px;
    padding: 40px;
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    margin-bottom: 24px;
}

/* 6. Testimonials */
.testimonials {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 60px;
}

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

.testimonial-card {
    background-color: rgba(247, 247, 244, 0.03);
    border: 1px solid rgba(247, 247, 244, 0.08);
    padding: 40px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 40px;
    color: rgba(247, 247, 244, 0.9);
}

.author strong {
    display: block;
    color: #F7F7F4;
    font-weight: 500;
}

.author span {
    font-size: 0.875rem;
    color: rgba(247, 247, 244, 0.5);
}

/* 7. Use Cases */
.use-cases {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.use-cases h2 {
    text-align: center;
    margin-bottom: 60px;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.use-case-card {
    border: 1px solid rgba(247, 247, 244, 0.08);
    border-radius: 16px;
    overflow: hidden;
    background-color: rgba(247, 247, 244, 0.02);
}

.use-case-img-placeholder {
    height: 200px;
    background-color: rgba(247, 247, 244, 0.06);
}

.use-case-content {
    padding: 30px;
}

/* 8. Changelog */
.changelog {
    padding: 100px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.changelog h2 {
    text-align: center;
    margin-bottom: 60px;
}

.changelog-list {
    list-style: none;
}

.changelog-list li {
    padding: 24px 0;
    border-bottom: 1px solid rgba(247, 247, 244, 0.1);
    display: flex;
    align-items: flex-start;
}

.changelog-list li:first-child {
    border-top: 1px solid rgba(247, 247, 244, 0.1);
}

.changelog .date {
    flex-shrink: 0;
    width: 140px;
    color: rgba(247, 247, 244, 0.5);
    font-weight: 500;
}

.changelog .update-text {
    flex: 1;
    color: rgba(247, 247, 244, 0.8);
}

.changelog .update-text strong {
    color: #F7F7F4;
    font-weight: 600;
}

/* 9. Team / About */
.about {
    padding: 100px 40px;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    background-color: #F7F7F4;
    color: #26251E;
    padding: 80px;
    border-radius: 24px;
}

.about-text {
    flex: 2;
}

.about-text h2 {
    color: #26251E;
    margin-bottom: 32px;
}

.about-text p {
    color: rgba(38, 37, 30, 0.8);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.about-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.stat-item h4 {
    font-size: 0.875rem;
    color: rgba(38, 37, 30, 0.6);
    margin-bottom: 8px;
    font-weight: 500;
}

.stat-item p {
    color: #26251E;
    font-weight: 600;
    margin: 0;
}

/* 10. Final CTA */
.final-cta {
    padding: 150px 40px;
    text-align: center;
}

.final-cta h2 {
    font-size: 3.5rem;
    margin-bottom: 40px;
}

/* 11. Footer */
.footer {
    padding: 80px 40px 40px;
    border-top: 1px solid rgba(247, 247, 244, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
}

.footer-brand img {
    height: 24px;
    margin-bottom: 16px;
    opacity: 0.9;
}

.footer-brand p {
    color: rgba(247, 247, 244, 0.6);
}

.footer-links {
    display: flex;
    gap: 120px;
}

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

.link-column h4 {
    color: #F7F7F4;
    font-weight: 500;
    margin-bottom: 8px;
}

.link-column a {
    color: rgba(247, 247, 244, 0.6);
}

.link-column a:hover {
    color: #F54E00; /* Orange Hover */
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid rgba(247, 247, 244, 0.1);
    color: rgba(247, 247, 244, 0.4);
    font-size: 0.875rem;
}
