/* ========================================
   Reset & Base Styles
   ======================================== */

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

:root {
    /* Colors */
    --color-primary: #ef4444;
    --color-primary-hover: #dc2626;
    --color-blue: #2563eb;
    --color-slate-50: #f8fafc;
    --color-slate-100: #f1f5f9;
    --color-slate-200: #e2e8f0;
    --color-slate-400: #94a3b8;
    --color-slate-600: #475569;
    --color-slate-800: #1e293b;
    --color-slate-900: #0f172a;
    --color-white: #ffffff;
    
    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    
    /* Spacing */
    --container-max: 1280px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Border radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.5;
    color: #1e293b;
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
   
  
}

/* ========================================
   Container & Layout
   ======================================== */

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-block;
    padding: 0.625rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

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

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

.btn-lg {
    padding: 0.75rem 2rem;
    height: 3rem;
}

.btn-sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
}

/* ========================================
   Header
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

@media (min-width: 1024px) {
    .header-content {
        height: 5rem;
    }
}

/* Logo */
.logo {
  
   
}

.logo-box {
    padding: 0.375rem 0.75rem;
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-sm);
}

.logo-text {
    color: var(--color-primary);
    font-weight: 600;
}

.logo-subtitle {
    font-size: 0.875rem;
    color: var(--color-slate-600);
    display: none;
}

@media (min-width: 640px) {
    .logo-subtitle {
        display: inline;
    }
}

.logo-subtitle-dark {
    color: var(--color-slate-400);
}

/* Navigation */
.nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav {
        display: flex;
    }
}

.nav-link {
    color: #1e293b;
    text-decoration: none;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--color-primary);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu-toggle span {
    display: block;
    width: 1.5rem;
    height: 2px;
    background-color: #1e293b;
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 0;
    background-color: var(--color-white);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    display: flex;
}

@media (min-width: 768px) {
    .mobile-menu {
        display: none !important;
    }
}

.mobile-menu-link {
    padding: 0.75rem 1rem;
    color: #1e293b;
    text-decoration: none;
    transition: var(--transition);
}

.mobile-menu-link:hover {
    background-color: var(--color-slate-50);
    color: var(--color-primary);
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    padding-top: 6rem;
    padding-bottom: 4rem;
    background: linear-gradient(to bottom, var(--color-slate-50), var(--color-white));
}

@media (min-width: 1024px) {
    .hero {
        padding-top: 8rem;
        padding-bottom: 6rem;
    }
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

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

@media (min-width: 1024px) {
    .hero-content {
        gap: 2rem;
    }
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-blue);
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--color-slate-600);
}

@media (min-width: 640px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

.hero-cta {
    padding-top: 1rem;
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
}

.hero-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.hero-image img {
    width: 100%;
    height: auto;
}

.hero-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    z-index: -1;
}

.hero-decoration-blue {
    bottom: -1.5rem;
    right: -1.5rem;
    width: 8rem;
    height: 8rem;
    background-color: #dbeafe;
}

.hero-decoration-red {
    top: -1.5rem;
    left: -1.5rem;
    width: 10rem;
    height: 10rem;
    background-color: #fee2e2;
}

/* ========================================
   Platforms Section
   ======================================== */

.platforms {
    padding: 4rem 0;
    background-color: var(--color-white);
}

@media (min-width: 1024px) {
    .platforms {
        padding: 6rem 0;
    }
}

.claim-cta {
    text-align: center;
    margin-bottom: 3rem;
}

.claim-link {
    color: var(--color-blue);
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.claim-link:hover {
    color: #1d4ed8;
}

.claim-arrow {
    display: inline-block;
    transition: var(--transition);
}

.claim-link:hover .claim-arrow {
    transform: translateX(0.25rem);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-slate-800);
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .section-title {
        margin-bottom: 4rem;
    }
}

.platforms-grid {
    display: grid;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .platforms-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

.platform-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.platform-card:hover {
    background-color: var(--color-slate-50);
}

.platform-logo {
    width: 10rem;
    height: 4rem;
}

/* ========================================
   Benefits Section
   ======================================== */

.benefits {
    padding: 4rem 0;
    background: linear-gradient(to bottom, var(--color-white), var(--color-slate-50));
}

@media (min-width: 1024px) {
    .benefits {
        padding: 6rem 0;
    }
}

.benefits-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

/* Dashboard Mockup */
.dashboard-wrapper {
    position: relative;
    order: 2;
}

@media (min-width: 1024px) {
    .dashboard-wrapper {
        order: 1;
    }
}

.dashboard {
    position: relative;
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-slate-200);
    margin-bottom: 1rem;
}

.dashboard-logo {
    width: 6rem;
    height: 1.5rem;
    background-color: var(--color-slate-200);
    border-radius: 0.25rem;
}

.dashboard-icons {
    display: flex;
    gap: 0.5rem;
}

.dashboard-icon {
    width: 1.5rem;
    height: 1.5rem;
    background-color: var(--color-slate-200);
    border-radius: 0.25rem;
}

.dashboard-blocks {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    padding-top: 0.5rem;
}

.dashboard-block {
    height: 5rem;
    border-radius: 0.25rem;
}

.dashboard-block-orange {
    background-color: #fb923c;
}

.dashboard-block-blue {
    background-color: #60a5fa;
}

.dashboard-block-red {
    background-color: #f87171;
}

.dashboard-block-green {
    background-color: #34d399;
}

.dashboard-content {
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dashboard-line {
    height: 0.75rem;
    background-color: var(--color-slate-100);
    border-radius: 0.25rem;
}

.dashboard-line-full {
    width: 100%;
}

.dashboard-line-three-quarter {
    width: 75%;
}

.dashboard-line-five-sixth {
    width: 83.33%;
}

.dashboard-footer {
    display: flex;
    justify-content: flex-end;
    padding-top: 1rem;
}

.dashboard-submit {
    padding: 0.5rem 1rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 0.875rem;
    border-radius: 0.25rem;
}

.dashboard-dot {
    position: absolute;
    width: 2rem;
    height: 2rem;
    border: 4px solid;
    border-radius: 50%;
    background-color: var(--color-white);
}

.dashboard-dot-top {
    top: -1rem;
    left: -1rem;
    border-color: var(--color-primary);
}

.dashboard-dot-bottom {
    bottom: -1rem;
    right: -1rem;
    border-color: var(--color-blue);
}

/* Benefits Content */
.benefits-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    order: 1;
}

@media (min-width: 1024px) {
    .benefits-content {
        order: 2;
    }
}

.benefits-title {
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-blue);
}

@media (min-width: 640px) {
    .benefits-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .benefits-title {
        font-size: 3rem;
    }
}

.benefits-description {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--color-slate-600);
}

.benefits-cta {
    padding-top: 1rem;
}

/* ========================================
   Footer
   ======================================== */

.footer {
    padding: 3rem 0;
    background-color: var(--color-slate-900);
    color: var(--color-white);
}

@media (min-width: 1024px) {
    .footer {
        padding: 4rem 0;
    }
}

.footer-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-tagline {
    color: var(--color-slate-400);
    font-size: 0.875rem;
}

.footer-heading {
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: var(--color-slate-400);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--color-white);
}

.footer-text {
    color: var(--color-slate-400);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-slate-800);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--color-slate-400);
}

@media (min-width: 640px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    margin: 0;
}

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

.footer-legal-link {
    color: var(--color-slate-400);
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal-link:hover {
    color: var(--color-white);
}




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

.signup-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.signup-modal.open {
  display: flex;
}

.form-content {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  width: 95%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.5rem;
  border: none;
  background: none;
  cursor: pointer;
  line-height: 1;
}

input{
    margin-top: 8px;
}


