/* Dialed Website - Retro Terminal Style */

:root {
    --terminal-green: rgb(51, 250, 51);
    --terminal-amber: rgb(255, 191, 0);
    --terminal-bg: rgb(13, 13, 13);
    --terminal-dim: rgba(51, 250, 51, 0.5);
    --terminal-border: rgba(51, 250, 51, 0.7);
}

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

html {
    font-size: 16px;
}

body {
    font-family: 'SF Mono', 'Menlo', 'Monaco', 'Consolas', monospace;
    background-color: var(--terminal-bg);
    color: var(--terminal-green);
    line-height: 1.6;
    min-height: 100vh;
}

.terminal {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--terminal-border);
}

.logo {
    font-size: 1.5rem;
    font-weight: normal;
    letter-spacing: 0.1em;
}

.cursor {
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.nav {
    display: flex;
    gap: 1.5rem;
}

.nav a {
    color: var(--terminal-dim);
    text-decoration: none;
    transition: color 0.2s;
}

.nav a:hover {
    color: var(--terminal-green);
}

/* Hero */
.hero {
    margin-bottom: 3rem;
}

.hero-text {
    margin-bottom: 2rem;
}

.tagline {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 0.875rem;
}

.dim {
    color: var(--terminal-dim);
}

.highlight {
    color: var(--terminal-amber);
}

.screenshot-container {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.screenshot {
    max-width: 280px;
    width: 100%;
    height: auto;
    border: 1px solid var(--terminal-border);
    border-radius: 8px;
}

/* Terminal Box */
.terminal-box {
    border: 1px solid var(--terminal-border);
    padding: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.box-header {
    position: absolute;
    top: -0.75rem;
    left: 1rem;
    background: var(--terminal-bg);
    padding: 0 0.5rem;
    font-size: 0.75rem;
    color: var(--terminal-amber);
    letter-spacing: 0.1em;
}

/* Features */
.feature-list {
    list-style: none;
}

.feature-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.bullet {
    position: absolute;
    left: 0;
    color: var(--terminal-amber);
}

/* Why section */
.why p {
    font-size: 0.9375rem;
}

/* Download */
.download {
    text-align: center;
    margin: 3rem 0;
}

.app-store-link {
    display: inline-block;
    transition: opacity 0.2s;
}

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

.app-store-badge {
    height: 50px;
    width: auto;
}

.pricing {
    margin-top: 1rem;
    font-size: 0.875rem;
}

/* Footer */
.footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--terminal-border);
    text-align: center;
}

.footer-content p {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.footer a {
    color: var(--terminal-amber);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Legal Pages */
.legal-content {
    max-width: 700px;
}

.legal-content h1 {
    font-size: 1.5rem;
    font-weight: normal;
    margin-bottom: 0.5rem;
    color: var(--terminal-green);
}

.legal-content .updated {
    color: var(--terminal-dim);
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1rem;
    font-weight: normal;
    color: var(--terminal-amber);
    margin-top: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.legal-content h3 {
    font-size: 0.9375rem;
    font-weight: normal;
    color: var(--terminal-green);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.legal-content strong {
    color: var(--terminal-green);
    font-weight: normal;
}

.legal-content a {
    color: var(--terminal-amber);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--terminal-dim);
    text-decoration: none;
    font-size: 0.875rem;
}

.back-link:hover {
    color: var(--terminal-green);
}

.back-link::before {
    content: '< ';
}

/* Responsive */
@media (max-width: 600px) {
    html {
        font-size: 14px;
    }

    .terminal {
        padding: 1.5rem 1rem;
    }

    .header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .screenshot {
        max-width: 240px;
    }
}
