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

:root {
    --text-primary: #ffffff;
    --text-secondary: #e5e5e5;
    --text-muted: #a0a0a0;
    --bg-dark: #0a0a0a;
    --bg-darker: #000000;
    --border-light: rgba(255, 255, 255, 0.2);
    --border-medium: rgba(255, 255, 255, 0.3);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-darker);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Hero Section with Background Image */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('barn-and-paddocks-on-farm.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
    object-fit: cover;
}

.background-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    transition: background 2s ease-in-out;
}

.day-night-cycle {
    animation: dayNightCycle 20s ease-in-out infinite;
}

@keyframes dayNightCycle {
    0% {
        background: rgba(0, 0, 0, 0.2);
    }
    25% {
        background: rgba(0, 0, 0, 0.4);
    }
    50% {
        background: rgba(0, 0, 0, 0.7);
    }
    75% {
        background: rgba(0, 0, 0, 0.4);
    }
    100% {
        background: rgba(0, 0, 0, 0.2);
    }
}

/* Stars Container */
.stars-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    animation: starsFade 20s ease-in-out infinite;
}

@keyframes starsFade {
    0% {
        opacity: 0;
    }
    25% {
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
    60% {
        opacity: 1;
    }
    75% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.8);
    animation: twinkle 3s ease-in-out infinite, moveStar 15s linear infinite;
}

.star::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.9);
    animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes moveStar {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(30px, 20px);
    }
}

/* Individual star positions and delays */
.star-1 { top: 10%; left: 10%; animation-delay: 0s, 0s; }
.star-2 { top: 15%; left: 25%; animation-delay: 0.2s, 0.5s; }
.star-3 { top: 8%; left: 40%; animation-delay: 0.4s, 1s; }
.star-4 { top: 12%; left: 55%; animation-delay: 0.6s, 1.5s; }
.star-5 { top: 18%; left: 70%; animation-delay: 0.8s, 2s; }
.star-6 { top: 6%; left: 85%; animation-delay: 1s, 2.5s; }
.star-7 { top: 25%; left: 15%; animation-delay: 1.2s, 3s; }
.star-8 { top: 30%; left: 35%; animation-delay: 1.4s, 3.5s; }
.star-9 { top: 22%; left: 50%; animation-delay: 1.6s, 4s; }
.star-10 { top: 28%; left: 65%; animation-delay: 1.8s, 4.5s; }
.star-11 { top: 35%; left: 80%; animation-delay: 2s, 5s; }
.star-12 { top: 40%; left: 20%; animation-delay: 2.2s, 5.5s; }
.star-13 { top: 45%; left: 45%; animation-delay: 2.4s, 6s; }
.star-14 { top: 38%; left: 60%; animation-delay: 2.6s, 6.5s; }
.star-15 { top: 50%; left: 75%; animation-delay: 2.8s, 7s; }
.star-16 { top: 55%; left: 10%; animation-delay: 3s, 7.5s; }
.star-17 { top: 48%; left: 30%; animation-delay: 3.2s, 8s; }
.star-18 { top: 60%; left: 55%; animation-delay: 3.4s, 8.5s; }
.star-19 { top: 65%; left: 70%; animation-delay: 3.6s, 9s; }
.star-20 { top: 58%; left: 85%; animation-delay: 3.8s, 9.5s; }

/* Larger stars */
.star-1, .star-5, .star-10, .star-15 {
    width: 3px;
    height: 3px;
    box-shadow: 0 0 6px rgba(255, 255, 255, 1);
}

.star-3, .star-8, .star-13, .star-18 {
    width: 2.5px;
    height: 2.5px;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.9);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    animation: fadeInUp 1s ease-out;
}

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

.domain-name {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    text-transform: uppercase;
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.launching-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: 0.02em;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
}

.mission-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 30px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Mission Section */
.mission-section {
    background: #1a1a1a;
    padding: 100px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.mission-content {
    max-width: 800px;
    width: 100%;
    text-align: center;
    opacity: 1;
    transform: translateY(0);
    transition: all 1s ease-out;
}

.mission-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.mission-icon {
    font-size: 4rem;
    margin-bottom: 30px;
    display: inline-block;
    animation: floatIcon 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 20px rgba(255, 255, 255, 0.1));
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

.mission-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.mission-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: #e5e5e5;
    line-height: 1.8;
    margin-bottom: 40px;
    letter-spacing: 0.02em;
}

.mission-highlight {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.highlight-word {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: #ffffff;
    position: relative;
    display: inline-block;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.highlight-word::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.highlight-word:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.highlight-word:hover::before {
    opacity: 1;
}

.highlight-word:nth-child(1) {
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.highlight-word:nth-child(2) {
    animation: slideInRight 0.8s ease-out 0.4s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Subscription Section */
.subscription-section {
    background: var(--bg-dark);
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40vh;
}

.subscription-content {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.subscribe-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.subscribe-description {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.email-form {
    display: flex;
    gap: 0;
    max-width: 500px;
    margin: 0 auto;
    border: 1px solid var(--border-light);
    border-radius: 0;
    overflow: hidden;
}

.email-input {
    flex: 1;
    padding: 16px 20px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    outline: none;
    transition: all 0.3s ease;
}

.email-input::placeholder {
    color: var(--text-muted);
    font-weight: 300;
}

.email-input:focus {
    background: rgba(255, 255, 255, 0.08);
}

.signup-button {
    padding: 16px 32px;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bg-darker);
    background: var(--text-primary);
    border: 1px solid var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.signup-button:hover {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--text-primary);
}

.signup-button:active {
    transform: scale(0.98);
}

.form-message {
    margin-top: 20px;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    min-height: 24px;
    transition: all 0.3s ease;
    color: var(--text-secondary);
}

.form-message.success {
    color: var(--text-primary);
}

.form-message.error {
    color: #ff6b6b;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    padding: 30px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.copyright {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 0.01em;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .launching-title {
        font-size: 3.5rem;
    }
    
    .subscribe-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 100vh;
    }
    
    .launching-title {
        font-size: 3rem;
    }
    
    .mission-tagline {
        font-size: 1rem;
    }
    
    .domain-name {
        font-size: 1.2rem;
        top: 30px;
    }
    
    .mission-section {
        padding: 80px 20px;
    }
    
    .mission-title {
        font-size: 2rem;
    }
    
    .mission-text {
        font-size: 1.2rem;
    }
    
    .highlight-word {
        font-size: 2rem;
        padding: 15px 30px;
    }
    
    .subscription-section {
        padding: 60px 20px;
    }
    
    .subscribe-title {
        font-size: 2rem;
    }
    
    .subscribe-description {
        font-size: 0.95rem;
    }
    
    .email-form {
        flex-direction: column;
        border: none;
    }
    
    .email-input {
        border: 1px solid var(--border-light);
        border-bottom: none;
    }
    
    .signup-button {
        width: 100%;
        border: 1px solid var(--text-primary);
        border-top: none;
    }
    
    .footer-content {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 100vh;
    }
    
    .launching-title {
        font-size: 2.5rem;
    }
    
    .mission-tagline {
        font-size: 0.9rem;
        margin-top: 20px;
    }
    
    .domain-name {
        font-size: 1rem;
        top: 20px;
    }
    
    .mission-section {
        padding: 60px 20px;
    }
    
    .mission-icon {
        font-size: 3rem;
        margin-bottom: 20px;
    }
    
    .mission-title {
        font-size: 1.75rem;
    }
    
    .mission-text {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .mission-highlight {
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
    }
    
    .highlight-word {
        font-size: 1.75rem;
        padding: 15px 25px;
        width: 100%;
        max-width: 300px;
    }
    
    .subscription-section {
        padding: 50px 20px;
    }
    
    .subscribe-title {
        font-size: 1.75rem;
    }
    
    .subscribe-description {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
    
    .email-input {
        padding: 14px 18px;
        font-size: 0.95rem;
    }
    
    .signup-button {
        padding: 14px 24px;
        font-size: 0.85rem;
    }
    
    .copyright {
        font-size: 0.8rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Ensure image loads properly */
.background-image {
    will-change: transform;
}
