/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    max-width: 1024px;
    margin: 0 auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Futura', sans-serif;
    color: #e0e0e0;
    text-align: center;
}

p {
    font-family: 'Georgia', serif;
    color: #cccccc;
    line-height: 1.5em;
}

a{
    color: #0885e0;
}

a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:active {
    text-decoration: none;
}

/* Hero Section */

.logo{
    max-width: 250px;
    margin: 0 4em 0 0 ;
    float: left;
}
.hero-section {
    text-align: center;
    padding: 4em 4em;
    width: 100%;
}

.hero-section h1 {
    
    display: block;
    font-size: 3em;
    animation: fadeIn 2s ease-in-out;
}

.hero-section p {
    font-size: 1.5em;
    margin: 1em 0;
    
    display: block;
}



.cta-button {
    background-color: #0885e0;
    color: #ffffff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    animation: pulsate 1.5s infinite;
    margin-top: 2em;
    display: inline-block;
    width: 50%;
    text-align: center;
}

.callout{
    width: 75%;
    padding: 10px 10%;
}

section{
    box-sizing: border-box;
    clear:both;
}


/* Key Features */
.key-features {
    display: flex;
    justify-content: space-around;
    padding: 50px 20px;
    background-color: #2a2a2a;
}

.feature {
    text-align: center;
    max-width: 300px;
    padding: 20px;
}

.feature img {
    width: 100px;
    height: 100px;
}

.feature h2 {
    font-size: 1.5em;
    margin: 20px 0;
}

.feature p {
    font-size: 1em;
    margin: 10px 0;
}

.feature a {
    color: #0885e0;
    text-decoration: none;
}

/* How It Works */
.how-it-works {
    padding: 50px 20px;
    background-color: #1a1a1a;
}

.timeline {
    display: flex;
    justify-content: space-between;
}

.timeline-item {
    text-align: center;
    max-width: 200px;
    padding: 20px;
}

.timeline-item h3 {
    font-size: 1.2em;
    margin: 20px 0;
}

.timeline-item p {
    font-size: 1em;
    margin: 10px 0;
}

/* Benefits Section */
.benefits-section {
    padding: 50px 20px;
    background-color: #2a2a2a;
    text-align: center;
}

.infographic {
    display: flex;
    justify-content: space-around;
    padding: 20px;
}

.infographic p {
    font-size: 1.2em;
    margin: 20px;
    text-align: center;
}

/* Customer Testimonials */
.customer-testimonials {
    padding: 50px 20px;
    background-color: #1a1a1a;
    text-align: center;
}

.carousel {
    display: flex;
    overflow: hidden;
    padding: 20px;
}

.testimonial {
    min-width: 300px;
    margin: 0 20px;
}

/* Use Cases */
.use-cases {
    padding: 50px 20px;
    background-color: #2a2a2a;
}

.grid {
    display: flex;
    justify-content: space-around;
    padding: 20px;
}

.tile {
    text-align: center;
    max-width: 200px;
    background-color: #333333;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.tile:hover {
    transform: rotateY(180deg);
}

/* Comparison Table */
.comparison-table {
    padding: 50px 20px;
    background-color: #1a1a1a;
    text-align: center;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th, .comparison-table td {
    padding: 15px;
    border: 1px solid #333333;
}

.comparison-table th {
    background-color: #2a2a2a;
}

/* Available in Closed Alpha */
.closed-alpha {
    padding: 50px 20px;
    background-color: #2a2a2a;
    text-align: center;
}

.closed-alpha form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.closed-alpha label {
    margin: 10px 0;
}

.closed-alpha input, .closed-alpha textarea {
    padding: 10px;
    margin: 10px 0;
    width: 80%;
    max-width: 500px;
}

.closed-alpha button {
    background-color: #0885e0;
    color: #ffffff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
}

/* FAQ Section */
.faq-section {
    padding: 50px 20px;
    background-color: #1a1a1a;
}

.faq-item {
    margin: 20px 0;
}

.faq-item h3 {
    font-size: 1.2em;
    cursor: pointer;
}

.faq-item p {
    display: none;
    font-size: 1em;
    margin: 10px 0;
}

/* Footer */
.footer {
    padding: 50px 20px;
    background-color: #2a2a2a;
    text-align: center;
}

.footer-links a {
    color: #0885e0;
    text-decoration: none;
    margin: 0 10px;
}

.newsletter-signup input {
    padding: 10px;
    margin: 10px 0;
    width: 80%;
    max-width: 300px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulsate {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-section h1 {
        font-size: 2.5em;
    }

    .hero-section p {
        font-size: 1.2em;
    }

    .cta-button {
        font-size: 1em;
        padding: 10px 20px;
    }

    .key-features, .timeline, .infographic, .grid {
        flex-direction: column;
        align-items: center;
    }

    .feature, .timeline-item, .tile {
        max-width: 100%;
        margin: 20px 0;
    }
}

@media (max-width: 768px) {
   .logo{
        display: none;
   }
    .hero-section h1 {
        font-size: 2em;
        text-align: center;
    }

    .hero-section p {
        font-size: 1em;
        text-align: center;
        
    }

    .cta-button {
        font-size: 0.8em;
        padding: 8px 16px;
        margin-left: 0%;
        clear:both;
    }

    .key-features, .timeline, .infographic, .grid {
        flex-direction: column;
        align-items: center;
    }

    .feature, .timeline-item, .tile {
        max-width: 100%;
        margin: 5% 0;
    }
}

@media (max-width: 480px) {
    .logo{
        float: none !important;
    }
    .hero-section h1 {
        font-size: 1.5em;
    }

    .hero-section p {
        font-size: 0.8em;
    }

    .cta-button {
        font-size: 0.6em;
        padding: 6px 12px;
    }

    .key-features, .timeline, .infographic, .grid {
        flex-direction: column;
        align-items: center;
    }

    .feature, .timeline-item, .tile {
        max-width: 100%;
        margin: 20px 0;
    }
}
