:root {
    --primary-color: #00C2FF;
    --bg-dark: #000000;
    --text-light: #ffffff;
    --text-grey: #888888;
    --footer-bg: #f5f5f5;
    --footer-text: #333333;
    --container-width: 1440px;
    --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.5;
}

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

/* Header */
header {
    padding: 20px 0;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
}

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

.header-logo {
    height: 30px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: var(--text-grey);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--text-light);
}

/* Hero Section */
.hero {
    width: 100%;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 70%);
}

.hero .container {
    position: relative;
    padding: 0;
}

.hero-visual {
    width: 100%;
}

.hero-banner {
    width: 100%;
    height: auto;
    display: block;
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--container-width);
    z-index: 2;
    padding-bottom: 80px; /* Add padding to lift content from the very bottom */
}

.hero-logo {
    width: 310px;
    margin-bottom: -30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 700;
}

.hero h1 span {
    color: var(--primary-color);
}

.hero p {
    color: var(--text-grey);
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 16px;
}

.app-store-link {
    display: inline-block;
    position: relative;
    z-index: 20;
    cursor: pointer;
}

.app-store-btn {
    height: 50px;
    cursor: pointer;
    transition: transform 0.2s;
}

.app-store-btn:hover {
    transform: scale(1.05);
}

/* Features Section */
.features {
    /* padding: 100px 0; */
}

.section-header {
    text-align: center;
    /* margin-bottom: 80px; */
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-grey);
}

.feature-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
    margin-top: -60px;
    /* margin-bottom: 120px; */
    gap: 60px;
}

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

.feature-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.feature-image img {
    width: 600px;
    height: auto;
    /* Add some glow or drop shadow if needed to match the image */
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.feature-content p {
    color: var(--text-grey);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Feature 1 List */
.feature-list {
    list-style: none;
}

.feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-icon {
    width: 20px;
    height: 20px;
    background-color: var(--primary-color); /* Fallback or replace with img */
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-size: 12px;
    font-weight: bold;
}

/* Feature 2 Tags */
.tags {
    display: flex;
    gap: 10px;
}

.tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-light);
}

.tag.highlight {
    /* Example gradient based on image */
    background: linear-gradient(90deg, #00C2FF, #00FFFF);
    color: black;
    font-weight: bold;
}

/* Feature 3 Icons */
.icon-list {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.icon-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-grey);
    font-size: 14px;
}

.icon-item img {
    width: 24px;
    height: 24px;
}

/* Footer */
footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 34px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-col p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    max-width: 300px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #000;
}

.copyright {
    text-align: center;
    font-size: 12px;
    color: #999;
    /* border-top: 1px solid #e5e5e5; */
    padding-top: 12px;
}
