:root {
    --ig-orange: #f09433;
    --ig-magenta: #dc2743;
    --bg-main: #fafafa;
    --bg-panel: #ffffff;
    --text-dark: #262626;
    --text-gray: #8e8e8e;
    --border-color: #dbdbdb;
    --btn-blue: #0095f6;
    --btn-blue-hover: #1877f2;
    --shadow: 0 4px 12px rgba(0,0,0,0.05);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
body { background: var(--bg-main); color: var(--text-dark); line-height: 1.5; min-height: 100vh; display: flex; flex-direction: column; }
a { text-decoration: none; color: inherit; transition: 0.2s; }

/* Clean Top Nav */
.nav-wrap { background: var(--bg-panel); border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 100; }
.nav { max-width: 975px; margin: 0 auto; height: 60px; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; }
.nav-brand { font-size: 22px; font-weight: 600; font-family: 'Comic Sans MS', cursive, sans-serif; letter-spacing: -0.5px; }
.nav-links { display: flex; gap: 20px; align-items: center; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text-dark); }
.nav-btn { color: var(--btn-blue) !important; font-weight: 600 !important; }

/* Login Interface Hero */
.login-container { display: flex; justify-content: center; align-items: center; padding: 50px 20px; flex: 1; max-width: 935px; margin: 0 auto; gap: 40px; }
.phones-mockup { display: none; } /* Hidden on mobile, shown on desktop via media query */

.login-form-area { max-width: 350px; width: 100%; display: flex; flex-direction: column; gap: 10px; }
.panel { background: var(--bg-panel); border: 1px solid var(--border-color); padding: 40px; text-align: center; border-radius: 1px; }

.logo-big { font-size: 36px; font-weight: 600; font-family: 'Comic Sans MS', cursive, sans-serif; margin-bottom: 30px; display: block; }
.login-desc { font-size: 14px; color: var(--text-gray); margin-bottom: 20px; font-weight: 600; line-height: 1.4; }

.btn-login { display: block; width: 100%; background: var(--btn-blue); color: white; border: none; padding: 8px 0; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; margin-bottom: 15px; }
.btn-login:hover { background: var(--btn-blue-hover); }

.divider { display: flex; align-items: center; margin: 15px 0; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--border-color); }
.divider span { padding: 0 15px; color: var(--text-gray); font-size: 13px; font-weight: 600; }

.alt-action { color: var(--btn-blue); font-size: 14px; font-weight: 600; display: block; margin-top: 15px; }

.signup-panel { font-size: 14px; }
.signup-panel a { color: var(--btn-blue); font-weight: 600; }

.app-download { text-align: center; margin-top: 10px; }
.app-download p { font-size: 14px; margin-bottom: 15px; }
.app-buttons { display: flex; justify-content: center; gap: 10px; }
.app-btn { background: #000; color: white; padding: 6px 12px; border-radius: 6px; font-size: 12px; font-weight: bold; border: 1px solid #000; }

/* SEO Content Area (Below Login) */
.content-area { max-width: 935px; margin: 0 auto; padding: 40px 20px 80px; }

/* Stats Bar */
.stats { display: flex; justify-content: center; gap: 30px; margin-bottom: 50px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-item strong { display: block; font-size: 18px; color: var(--text-dark); }
.stat-item span { font-size: 12px; color: var(--text-gray); text-transform: uppercase; }

/* About & SEO */
.seo-text { text-align: center; margin-bottom: 50px; max-width: 700px; margin-left: auto; margin-right: auto; }
.seo-text p { font-size: 14px; color: var(--text-gray); margin-bottom: 15px; }

/* Simple Features */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-bottom: 50px; }
.feat-card { background: var(--bg-panel); border: 1px solid var(--border-color); padding: 25px; border-radius: 4px; }
.feat-card h4 { font-size: 16px; margin-bottom: 10px; font-weight: 600; }
.feat-card p { font-size: 14px; color: var(--text-gray); }

/* Steps */
.steps-list { background: var(--bg-panel); border: 1px solid var(--border-color); max-width: 600px; margin: 0 auto 50px; }
.step { padding: 20px; border-bottom: 1px solid var(--border-color); }
.step:last-child { border-bottom: none; }
.step h4 { font-size: 14px; margin-bottom: 5px; font-weight: 600; }
.step p { font-size: 14px; color: var(--text-gray); }

/* Showcase Images */
.showcase { display: block; width: 100%; max-width: 600px; margin: 0 auto 50px; border: 1px solid var(--border-color); }

/* Footer */
.footer { max-width: 975px; margin: 0 auto; padding: 40px 20px; display: flex; flex-direction: column; align-items: center; gap: 15px; }
.footer-links { display: flex; gap: 15px; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: 12px; color: var(--text-gray); }
.footer-links a:hover { text-decoration: underline; }
.footer-copy { font-size: 12px; color: var(--text-gray); }

/* Desktop view adjustments */
@media (min-width: 876px) {
    .phones-mockup { display: block; flex: 1; height: 580px; background-image: url('1.webp'); background-size: contain; background-repeat: no-repeat; background-position: right center; }
}