@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Playfair+Display:ital,wght@1,900&family=Space+Mono:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --bg-color: #050505;
    --text-main: #E0D2B4;
    --accent-pink: #FF0055;
    --accent-dim: #5c001f;
    --border-width: 3px;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Space Mono', monospace;
    overflow-x: hidden;
    width: 100vw;
    min-height: 100vh;
}

h1, h2, h3 {
    font-weight: normal;
}

.mechanic-type {
    font-family: 'Archivo Black', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.organic-type {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 900;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px;
    position: relative;
    z-index: 2;
}

.vertical-rhythm {
    position: fixed;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 100px;
    z-index: 10;
    mix-blend-mode: exclusion;
}

.v-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: var(--accent-pink);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.8;
}

.hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.curved-header {
    position: absolute;
    top: 10%;
    width: 800px;
    height: 800px;
    animation: spin-slow 60s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.curved-header text {
    fill: var(--accent-pink);
    font-family: 'Archivo Black', sans-serif;
    font-size: 44px;
    letter-spacing: 10px;
    text-transform: uppercase;
}

.title-cluster {
    position: relative;
    z-index: 5;
    text-align: center;
    mix-blend-mode: normal;
}

.big-calligraphy {
    font-size: clamp(8rem, 15vw, 16rem);
    line-height: 0.8;
    color: var(--text-main);
    transform: rotate(-5deg);
    display: block;
    text-shadow: 10px 10px 0px #000;
}

.sub-calligraphy {
    font-size: clamp(2rem, 4vw, 5rem);
    color: var(--accent-pink);
    display: block;
    margin-top: -40px;
    margin-left: 100px;
    z-index: 6;
    position: relative;
}

.stamp-badge {
    border: var(--border-width) solid var(--accent-pink);
    border-radius: 20px;
    padding: 15px 30px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    color: var(--accent-pink);
    font-family: 'Archivo Black', sans-serif;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    background: transparent;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.stamp-badge:hover {
    background: var(--accent-pink);
    color: var(--bg-color);
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--accent-dim);
}

.stamp-badge span {
    font-size: 12px;
    font-family: 'Space Mono', monospace;
    opacity: 0.8;
    margin-bottom: 5px;
}

.stamp-badge strong {
    font-size: 24px;
    line-height: 1;
}

.mockup-stage {
    position: relative;
    margin-top: 100px;
    width: 100%;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.phone-frame {
    width: 320px;
    height: 600px;
    border: 4px solid var(--text-main);
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    background: #111;
    box-shadow: 0 0 0 10px var(--bg-color), 0 0 0 13px var(--accent-pink);
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.phone-frame:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

.screen-content {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 1fr);
    gap: 2px;
    background: #000;
}

.thumb {
    background-color: #222;
    position: relative;
    overflow: hidden;
}

.thumb::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, #333 0%, #000 100%);
    opacity: 0.5;
}

.thumb:nth-child(2n) {
    background: #1a1a1a;
}

.thumb:nth-child(3n) {
    background: #2a2a2a;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 80px;
    margin-top: 150px;
    margin-bottom: 150px;
    position: relative;
}

.feature-item {
    position: relative;
    padding: 20px;
    border-left: 1px solid var(--accent-pink);
}

.feature-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 2rem;
    color: var(--text-main);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.feature-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #888;
    max-width: 300px;
}

.floating-seal {
    position: absolute;
    right: 5%;
    top: 20%;
    width: 120px;
    height: 120px;
    border: 4px solid var(--accent-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transform: rotate(15deg);
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 20;
}

.seal-inner {
    border: 1px solid var(--accent-pink);
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Playfair Display', serif;
    color: var(--accent-pink);
    font-weight: bold;
    line-height: 1;
}

@keyframes spin-slow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.pink-text {
    color: var(--accent-pink);
}

.cream-text {
    color: var(--text-main);
}

.cta-container {
    margin-top: 60px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.privacy-pill {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 0, 85, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 0, 85, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 1;
}

.email-signup {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.email-signup p {
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.email-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.email-form input {
    background: transparent;
    border: 2px solid var(--accent-pink);
    border-radius: 20px;
    padding: 12px 20px;
    color: var(--text-main);
    font-family: 'Space Mono', monospace;
    font-size: 14px;
    min-width: 250px;
    outline: none;
}

.email-form input::placeholder {
    color: #666;
}

.email-form button {
    background: var(--accent-pink);
    border: none;
    border-radius: 20px;
    padding: 12px 30px;
    color: var(--bg-color);
    font-family: 'Archivo Black', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.email-form button:hover {
    background: var(--text-main);
    transform: scale(1.05);
}

.email-form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.input-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
}

.email-form input.input-error {
    border-color: #FF6B35;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.error-message {
    display: none;
    color: #FF8C42;
    font-size: 12px;
    margin-top: 8px;
    text-align: left;
    padding-left: 5px;
}

.form-status {
    display: none;
    margin-top: 20px;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Space Mono', monospace;
    text-align: center;
    animation: fadeIn 0.3s ease;
}

.form-status--success {
    background: rgba(91, 141, 184, 0.15);
    border: 1px solid #5B8DB8;
    color: #7EB8D6;
}

.form-status--error {
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid #FF6B35;
    color: #FF8C42;
}

.form-status--warning {
    background: rgba(255, 193, 7, 0.15);
    border: 1px solid #FFC107;
    color: #FFD54F;
}

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

footer {
    border-top: 1px solid #333;
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
}

@media (max-width: 768px) {
    .vertical-rhythm {
        display: none;
    }

    .container {
        padding: 20px;
    }

    .big-calligraphy {
        font-size: clamp(4rem, 12vw, 8rem);
    }

    .sub-calligraphy {
        margin-left: 20px;
        font-size: clamp(1.5rem, 3vw, 3rem);
    }

    .floating-seal {
        right: 10px;
        top: 10%;
        width: 80px;
        height: 80px;
    }

    .seal-inner {
        width: 65px;
        height: 65px;
        font-size: 10px;
    }

    .seal-inner span[style*="font-size: 28px"] {
        font-size: 18px !important;
    }

    .phone-frame {
        width: 280px;
        height: 520px;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 80px;
        margin-bottom: 80px;
    }

    .curved-header {
        width: 400px;
        height: 400px;
    }

    footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    footer>div:last-child {
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .curved-header {
        animation: none;
    }
}
