/* Finn Digital — style.css */

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #0a0a0a;
    --surface: #111111;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.5);
    --text-tertiary: rgba(255, 255, 255, 0.3);
    --accent: #6366f1;
    --border: rgba(255, 255, 255, 0.08);

    --color-naturefind: #6366f1;
    --color-carefind: #3b82f6;
    --color-easyrealty: #10b981;
    --color-pettrace: #f59e0b;
    --color-safeplate: #ef4444;
    --color-truehue: #a855f7;
    --color-revivo: #06b6d4;

    --font: 'Space Grotesk', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text-primary);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-circles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.circle {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle-1 { width: 500px; height: 500px; }
.circle-2 { width: 340px; height: 340px; border-color: rgba(255, 255, 255, 0.09); }
.circle-3 { width: 180px; height: 180px; border-color: rgba(255, 255, 255, 0.13); }

.hero-content {
    position: relative;
    text-align: center;
    z-index: 1;
}

.wordmark {
    font-size: 64px;
    font-weight: 800;
    letter-spacing: -2px;
}

.wordmark .accent {
    color: var(--accent);
}

.subtitle {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-secondary);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.app-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 28px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    font-size: 24px;
    color: var(--text-tertiary);
    animation: bounce 2s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ============================================
   RESPONSIVE — HERO
   ============================================ */
@media (max-width: 768px) {
    .wordmark { font-size: 40px; letter-spacing: -1px; }
    .circle-1 { width: 320px; height: 320px; }
    .circle-2 { width: 220px; height: 220px; }
    .circle-3 { width: 120px; height: 120px; }
}

/* ============================================
   APP SHOWCASE
   ============================================ */
.apps {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 24px;
}

.app-row {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 48px 0;
    border-bottom: 1px solid var(--border);
}

.app-row:last-child {
    border-bottom: none;
}

.app-icon-wrap {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    flex-shrink: 0;
    overflow: hidden;
}

.app-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.app-icon-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
}

.app-icon-letter {
    font-size: 48px;
    font-weight: 800;
}

.coming-soon {
    opacity: 0.6;
    cursor: default;
}

.coming-soon:hover {
    opacity: 0.6;
}

.app-info {
    flex: 1;
}

.app-number {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.app-name {
    font-size: 28px;
    font-weight: 700;
    margin-top: 6px;
}

.app-desc {
    font-size: 16px;
    color: var(--text-secondary);
    margin-top: 8px;
    line-height: 1.6;
}

.app-link {
    display: inline-block;
    margin-top: 16px;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    transition: opacity 0.2s;
}

.app-link:hover {
    opacity: 0.8;
}

/* ============================================
   FADE-IN ANIMATION
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE — APPS
   ============================================ */
@media (max-width: 768px) {
    .app-row {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .app-icon-wrap {
        width: 100px;
        height: 100px;
    }

    .app-name { font-size: 24px; }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    max-width: 600px;
    margin: 0 auto;
    padding: 80px 24px;
    text-align: center;
}

.about-heading {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
}

.about-text {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.about-stats {
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-tertiary);
    letter-spacing: 2px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    border-top: 1px solid var(--border);
    padding: 40px 24px;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 16px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-secondary);
    transition: color 0.2s;
}

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

.footer-copy {
    font-size: 13px;
    color: var(--text-tertiary);
}
