/* ============================================
   AITHER MEDIA — Monochrome Brand Theme
   ============================================ */

:root {
    --bg: #1A1A1A;
    --bg-raised: #212121;
    --bg-card: #2E2E2E;
    --bg-card-hover: #3A3A3A;
    --text: #FFFFFF;
    --text-secondary: #CFCFCF;
    --text-muted: #888888;
    --accent: #FFFFFF;
    --accent-light: #CFCFCF;
    --accent-dark: #DDDDDD;
    --accent-2: #CCCCCC;
    --green: #4ADE80;
    --gold: #FBBF24;
    --border: rgba(255, 255, 255, 0.1);
    --border-hover: rgba(255, 255, 255, 0.2);
    --radius: 8px; /* Sharper edges fit the monochrome/technical vibe better */
    --radius-sm: 4px;
    --font: 'Inter', -apple-system, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.animate-in { animation: fadeUp 0.8s ease both; }
.d1 { animation-delay: 0.1s; }
.d2 { animation-delay: 0.2s; }
.d3 { animation-delay: 0.35s; }
.d4 { animation-delay: 0.5s; }

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   PAGE WRAPPER
   ============================================ */

.page-wrapper {
    max-width: 480px;
    margin: 0 auto;
    background: var(--bg);
    min-height: 100vh;
    position: relative;
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.5);
}

/* ============================================
   HERO
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1.5rem;
    overflow: hidden;
    background: linear-gradient(180deg, #111111 0%, var(--bg) 100%);
}

.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* Monochrome glows */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.hero-orb-1 {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    top: 10%;
    left: -20%;
}

.hero-orb-2 {
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.02);
    bottom: 15%;
    right: -15%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.logo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    margin-bottom: 1.25rem;
}

.brand {
    margin-bottom: 1.2rem;
    line-height: 1.15;
}

.brand-small {
    display: block;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.brand-accent {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -1.5px;
}

.tagline {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 6px;
    line-height: 1.5;
}

.tagline strong {
    color: var(--text);
    font-weight: 600;
}

.sub-tagline {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
}

.hero-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--text-muted);
    border-bottom: 2px solid var(--text-muted);
    transform: rotate(45deg);
    opacity: 0.5;
    animation: bounceDown 2s ease-in-out infinite;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    font-family: var(--font);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--text);
    color: #000;
}

.btn-primary:hover {
    background: #E0E0E0;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}

.btn-xl {
    padding: 18px 36px;
    font-size: 1rem;
}

/* ============================================
   HEADERS
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text);
}

.section-sub {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 8px;
}

/* ============================================
   WHAT IS / POINTS
   ============================================ */

.what-is {
    padding: 4rem 1.5rem;
}

.what-is-lead {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
}

.what-is-lead strong {
    color: var(--text);
}

.what-is-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.point:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
}

.point-icon {
    font-size: 1.4rem;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.point strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 4px;
    font-weight: 600;
}

.point p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */

.comparison {
    padding: 4rem 1.5rem;
    background: var(--bg-raised);
}

.compare-table {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-card);
}

.compare-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    padding: 16px;
    border-bottom: 1px solid var(--border);
    font-size: 0.8rem;
    align-items: center;
}

.compare-row:last-child {
    border-bottom: none;
}

.compare-header {
    background: rgba(255,255,255,0.02);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.compare-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.compare-mini {
    color: var(--text);
    font-weight: 600;
    text-align: center;
}

.compare-trad {
    color: var(--text-muted);
    text-align: center;
    text-decoration: line-through;
    opacity: 0.6;
}

/* ============================================
   FEATURES GRID
   ============================================ */

.included {
    padding: 4rem 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.feature-card {
    padding: 24px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}

.feat-icon {
    font-size: 1.6rem;
    margin-bottom: 12px;
    opacity: 0.9;
}

.feature-card h3 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.feature-card p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ============================================
   PERFECT FOR
   ============================================ */

.perfect-for {
    padding: 4rem 1.5rem;
    background: var(--bg-raised);
}

.business-types {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.biz-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    text-align: center;
}

.biz-type:hover {
    border-color: rgba(255,255,255,0.3);
    background: var(--bg-card-hover);
    color: var(--text);
}

.biz-type span {
    font-size: 1.4rem;
}

/* ============================================
   HOW IT WORKS (PROCESS)
   ============================================ */

.process {
    padding: 4rem 1.5rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    width: 100%;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.step:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
}

.step-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-secondary);
    line-height: 1;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.step-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.step-line {
    width: 2px;
    height: 30px;
    background: var(--border);
    margin: 0 0 0 40px;
}

/* ============================================
   ADD-ONS
   ============================================ */

.addons {
    padding: 4rem 1.5rem;
    background: var(--bg-raised);
}

.addons-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.addon-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.addon-card:hover {
    border-color: rgba(255,255,255,0.25);
    background: var(--bg-card-hover);
}

.addon-icon {
    font-size: 1.6rem;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.addon-content {
    flex: 1;
}

.addon-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #4ADE80;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.2);
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 10px;
}

.addon-content h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.addon-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ============================================
   REVIEWS
   ============================================ */

.reviews {
    padding: 4rem 1.5rem;
}

.review-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.review {
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.3s ease;
}

.review:hover {
    border-color: var(--border-hover);
}

.review-stars {
    color: var(--text);
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.review p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 16px;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.reviewer {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

.review-time {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ============================================
   CONNECT / SOCIAL
   ============================================ */

.connect {
    padding: 4rem 1.5rem;
    background: var(--bg-raised);
}

.social-link {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
    background: var(--bg-card-hover);
}

.social-name {
    display: block;
    font-size: 1rem;
    font-weight: 600;
}

.social-handle {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   CTA
   ============================================ */

.cta {
    padding: 5rem 1.5rem;
    text-align: center;
    background: linear-gradient(0deg, #111111 0%, var(--bg) 100%);
}

.cta-inner h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.cta-inner p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.cta-note {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1.25rem;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    padding: 3rem 1.5rem;
    text-align: center;
    border-top: 1px solid var(--border);
}

.footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.footer-brand {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.footer p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.powered {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 380px) {
    .brand-accent { font-size: 2.2rem; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { width: 100%; justify-content: center; }
    .business-types { grid-template-columns: 1fr 1fr; }
}

::selection {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 2rem auto;
    text-align: left;
}
.contact-form input, .contact-form textarea {
    padding: 1rem;
    background: #111;
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    color: var(--text-light);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--transition);
}
.contact-form input:focus {
    outline: none;
    border-color: var(--text-light);
}

