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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #F1F1F1;
    color: #000;
    overflow-x: hidden;
}

:root {
    --cta-animation-depth: 0.75rem;
    --cta-transition-bezier: cubic-bezier(0.5, 2.5, 0.7, 0.7);
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
}

.cta-button {
    --cta-bg: #fff;
    --cta-bg-hover: #fff;
    --cta-text: #000;
    --cta-text-hover: #000;
    --cta-border-color: #000;
    --cta-shadow-color: rgba(0, 0, 0, 0.9);
    --cta-radius: 12px;
    --cta-padding-y: 0.9rem;
    --cta-padding-x: 1.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    position: relative;
    padding: var(--cta-padding-y) var(--cta-padding-x);
    border-radius: var(--cta-radius);
    border: 1px solid var(--cta-border-color);
    background: var(--cta-bg);
    color: var(--cta-text);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition:
        transform 0.3s var(--cta-transition-bezier),
        box-shadow 0.25s cubic-bezier(0.25, 0.8, 0.5, 1),
        background-color 0.2s ease,
        color 0.2s ease;
    box-shadow: 0 0 0 0 var(--cta-shadow-color);
}

.elevated-surface {
    --elevation-depth: var(--cta-animation-depth);
    --elevation-shadow-color: rgba(0, 0, 0, 0.9);
    transition:
        transform 0.3s var(--cta-transition-bezier),
        box-shadow 0.25s cubic-bezier(0.25, 0.8, 0.5, 1);
    box-shadow: 0 0 0 0 var(--elevation-shadow-color);
}

.elevated-surface:hover,
.elevated-surface:focus,
.elevated-surface:focus-visible,
.elevated-surface:focus-within {
    transform: translateY(calc(-0.3 * var(--elevation-depth)));
    box-shadow: 0 calc(var(--elevation-depth) * 0.55) 0 0 var(--elevation-shadow-color);
}

.elevated-surface:active {
    transform: translateY(calc(-1 * var(--elevation-depth)));
    box-shadow: 0 0 0 0 var(--elevation-shadow-color);
}

.cta-button:hover,
.cta-button:focus-visible {
    background: var(--cta-bg-hover);
    color: var(--cta-text-hover);
    transform: translateY(calc(-0.3 * var(--cta-animation-depth)));
    box-shadow: 0 calc(var(--cta-animation-depth) * 0.55) 0 0 var(--cta-shadow-color);
}

.cta-button:active {
    transform: translateY(calc(-1 * var(--cta-animation-depth)));
    box-shadow: 0 0 0 0 var(--cta-shadow-color);
}

.cta-button:focus-visible {
    outline: 0.125rem solid #004e56;
    outline-offset: 0.125rem;
}

.cta-button:disabled,
.cta-button[disabled],
.cta-button[aria-disabled="true"] {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
    transform: none;
}

.cta-button:disabled::before,
.cta-button[disabled]::before,
.cta-button[aria-disabled="true"]::before {
    transform: translateY(var(--cta-animation-depth));
}

/* Header */
.header {
    width: 100%;
    height: 72px;
    padding: 12px clamp(20px, 4vw, 60px);
    background: #D0CDF5;
    border: 1px solid #000;
    position: fixed;
    top: 0;
    z-index: 1000;
}

.header-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    width: 46px;
    height: 46px;
    display: block;
    object-fit: contain;
}

.sign-up-btn {
    --cta-padding-y: 0.625rem;
    --cta-padding-x: 1.375rem;
    font-size: 18px;
    font-weight: 600;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    text-align: center;
    min-height: 820px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 35px;
    background: #F1F1F1;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    position: relative;
    overflow: hidden;
}

.hero-stickers {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-sticker {
    position: absolute;
    display: block;
    width: clamp(90px, 12vw, 180px);
    pointer-events: auto;
    transition: transform 0.2s ease;
}

.hero-sticker:hover {
    animation: sticker-shake 0.35s linear infinite;
}

.hero-sticker--vibe {
    top: 10%;
    left: 15%;
    transform: rotate(-8deg);
}

.hero-sticker--wow {
    top: 10%;
    right: 12%;
    width: clamp(140px, 15vw, 240px);
    transform: rotate(10deg);
}

.hero-sticker--weird {
    bottom: 10%;
    left: 8%;
    width: clamp(140px, 15vw, 240px);
    transform: rotate(-6deg);
}

.hero-sticker--letsgo {
    bottom: 10%;
    right: 10%;
    width: clamp(150px, 16vw, 250px);
    transform: rotate(5deg);
}

@keyframes sticker-shake {
    0% { transform: translate(0, 0) rotate(-1deg); }
    25% { transform: translate(-1px, 1px) rotate(2deg); }
    50% { transform: translate(1px, -1px) rotate(-2deg); }
    75% { transform: translate(-1px, -1px) rotate(1deg); }
    100% { transform: translate(0, 0) rotate(-1deg); }
}

.hero-images {
    display: flex;
    flex-direction: column;
    gap: 35px;
    align-items: center;
}

.hero-headline {
    width: 51.46556rem;
    max-width: 90vw;
    margin: 0 auto;
    color: #000;
    text-align: center;
    text-shadow: 0 0 1px rgba(0, 0, 0, 1);
    -webkit-text-stroke-width: 6px;
    -webkit-text-stroke-color: #fff;
    -webkit-text-stroke-linejoin: round;
    paint-order: stroke fill;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 4.75rem;
    font-style: normal;
    font-weight: 800;
    line-height: 113%;
    letter-spacing: 0.0225rem;
}

.hero-image {
    width: 100%;
    max-width: 730px;
    height: auto;
    background: #ddd;
}

.email-section {
    width: 100%;
    max-width: 860px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
}

.email-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.email-form-fields {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.email-submit-btn {
    --cta-padding-y: 1.0625rem;
    --cta-padding-x: 2rem;
    font-size: 18px;
    font-weight: 600;
}

.email-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.email-status {
    min-height: 22px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    color: #000;
}

.email-status.is-error {
    color: #842029;
}

.email-status.is-success {
    color: #0f5132;
}

.footer-email-status {
    text-align: left;
}

.email-line {
    width: 859px;
    height: 63px;
    background: #000;
    outline: 3px solid #fff;
    outline-offset: -3px;
    position: relative;
}

.email-line::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    outline: 4px solid #000;
    outline-offset: -4px;
}

.email-text {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 0.36px;
    text-align: center;
}

.email-input {
    width: 340px;
    padding: 17px 16px;
    background: #fff;
    border: 1px solid #000;
    border-radius: 12px;
    box-shadow: none;
    font-size: 18px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.5);
}

.email-input:focus {
    outline: none;
    color: #000;
}

.rotated-images {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.rotate-image {
    width: auto;
    height: auto;
    background: #ddd;
}

.rotate--7 {
    transform: rotate(-7deg);
}

.rotate-13 {
    transform: rotate(13deg);
}

.rotate--13 {
    transform: rotate(-13deg);
}

.rotate--19 {
    transform: rotate(-19deg);
}

/* Features Section */
.features {
    width: 100%;
    padding: 160px 139px 360px;
    background: #D0CDF5;
    border-top-left-radius: 36px;
    border-top-right-radius: 36px;
    border: 1px solid #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.features-content {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.features-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.features-header h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 63px;
    color: #000;
}

.features-header p {
    width: 773px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    color: #000;
    text-align: center;
}

.features-grid {
    display: flex;
    gap: 21px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-card {
    width: 299px;
    padding: 36px 20px 24px;
    background: #fff;
    border-radius: 32px;
    border: 1px solid #000;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 38px;
    cursor: pointer;
}

.feature-icon {
    width: 124px;
    height: 124px;
    display: block;
    object-fit: contain;
    flex-shrink: 0;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
    flex: 1;
    width: 100%;
}

.feature-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

.feature-content p {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 1.5;
}

/* Pricing Section */
.pricing {
    width: 100%;
    padding: 160px 140px 260px;
    background: #39A1FF;
    border-top-left-radius: 36px;
    border-top-right-radius: 36px;
    border: 1px solid #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: -160px;
    position: relative;
    z-index: 2;
}

.pricing-content {
    width: 100%;
    max-width: 1160px;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.pricing-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-header h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 63px;
    color: #000;
}

.pricing-header p {
    width: 773px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    color: #000;
    text-align: center;
}

.pricing-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.pricing-card {
    width: 565px;
    padding: 74px 56px;
    background: #fff;
    border-radius: 33px;
    border: 1px solid #000;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    cursor: pointer;
}

.pricing-card h3 {
    font-size: 64px;
    font-weight: 700;
    line-height: 63px;
    color: #000;
    text-align: center;
}

.pricing-card p {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    color: #000;
    text-align: center;
}

/* CTA Banner */
.cta-banner {
    width: 100%;
    background: #D0CDF5;
    border: 1px solid #000;
    padding: 10px;
    overflow: hidden;
    position: relative;
}

.cta-banner-content {
    display: flex;
    align-items: center;
    gap: 24px;
    animation: scroll-horizontal 20s linear infinite;
    white-space: nowrap;
}

@keyframes scroll-horizontal {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.cta-banner-text {
    font-size: 48px;
    font-weight: 700;
    font-family: 'Helvetica', sans-serif;
    color: #000;
    flex-shrink: 0;
}

.cta-banner-dot {
    width: 25px;
    height: 25px;
    background: #000;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Subscribe Section */
.subscribe {
    width: 100%;
    padding: 62px 0;
    background: #F1F1F1;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    border: 1px solid #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.subscribe-headline {
    width: 51.46556rem;
    max-width: 90vw;
    margin: 0 auto;
    color: #000;
    text-align: center;
    text-shadow: 0 0 1px rgba(0, 0, 0, 1);
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #fff;
    -webkit-text-stroke-linejoin: round;
    paint-order: stroke fill;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 800;
    line-height: 113%;
    letter-spacing: 0.0225rem;
}

.subscribe-images {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.subscribe-image {
    width: 100%;
    max-width: 730px;
    height: auto;
    background: #ddd;
}

/* Footer */
.footer {
    width: 100%;
    padding: 62px 45px;
    background: #D0CDF5;
    border: 1px solid #000;
    display: flex;
    justify-content: center;
}

.footer-content {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 80px;
    justify-content: flex-end;
}

.footer-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.footer-newsletter h2 {
    font-size: 32px;
    font-weight: 600;
    color: #000;
}

.footer-newsletter-input-group {
    display: flex;
    gap: 12px;
    align-items: center;
    width: 100%;
}

.footer-email-input {
    flex: 1;
    width: 100%;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid #000;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.5);
}

.footer-email-input:focus {
    outline: none;
    color: #000;
}

.footer-email-input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.footer-newsletter .newsletter-btn {
    padding: 17px;
    background: #fff;
    border: 1px solid #000;
    border-radius: 12px;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.9);
    width: 70px;
    height: 62px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    cursor: pointer;
    transition:
        transform 0.3s var(--cta-transition-bezier),
        box-shadow 0.25s cubic-bezier(0.25, 0.8, 0.5, 1);
}

.footer-newsletter .newsletter-btn:hover,
.footer-newsletter .newsletter-btn:focus-visible {
    transform: translateY(calc(-0.3 * var(--cta-animation-depth)));
    box-shadow: 0 calc(var(--cta-animation-depth) * 0.55) 0 0 rgba(0, 0, 0, 0.9);
}

.footer-newsletter .newsletter-btn:active {
    transform: translateY(calc(-1 * var(--cta-animation-depth)));
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.9);
}

.footer-newsletter .newsletter-arrow {
    width: 20px;
    height: 23px;
}

.footer-copyright {
    display: flex;
    align-items: center;
    gap: 13px;
}

.footer-logo {
    width: 33px;
    height: 32px;
    display: block;
    object-fit: contain;
}

.footer-copyright-text {
    font-size: 20px;
    font-weight: 600;
    color: #000;
}

.footer-links {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 36px;
    align-items: flex-end;
}

.footer-middle {
    display: flex;
    gap: 40px;
}

.footer-links-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
    text-align: right;
}

.footer-link-title {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    margin-bottom: 8px;
}

.footer-link {
    font-size: 16px;
    font-weight: 400;
    color: #414141;
    text-decoration: none;
}

.footer-social {
    display: flex;
    gap: 32px;
    align-self: flex-end;
}

.footer-social-icon {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.footer-social-icon:hover {
    transform: translateY(-4px);
}

.footer-social-icon img {
    width: 100%;
    height: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-header p,
    .pricing-header p {
        width: 100%;
        padding: 0 24px;
    }
    
    .features {
        padding: 280px 20px 220px;
    }
    
    .features-content {
        gap: 110px;
    }
    
    .pricing {
        padding: 280px 20px 140px;
        margin-top: -120px;
    }
    
    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        width: 100%;
        max-width: 565px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-left,
    .footer-links {
        width: 100%;
    }
    
    .footer-middle {
        flex-direction: column;
        gap: 24px;
    }
    
    .footer-links,
    .footer-links-column {
        align-items: flex-start;
        text-align: left;
    }
    
    .footer-social {
        align-self: flex-start;
        gap: 16px;
    }
    
    .footer-newsletter-input-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .footer-newsletter .newsletter-btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .header {
        height: auto;
        padding: 12px 16px;
    }
    
    .header-content {
        flex-direction: row;
        align-items: center;
    }
    
    .sign-up-btn {
        width: auto;
    }
    
    .hero-headline {
        width: 100%;
        font-size: 3.25rem;
        -webkit-text-stroke-width: 1px;
        paint-order: stroke fill;
    }
    
    .subscribe-headline {
        width: 100%;
        font-size: 2rem;
        -webkit-text-stroke-width: 1.5px;
        paint-order: stroke fill;
    }
    
    .features,
    .pricing {
        padding: 60px 20px;
    }
    
    .features {
        padding: 150px 20px 190px;
    }
    
    .features-content {
        gap: 90px;
    }
    
    .pricing {
        margin-top: -110px;
        padding: 150px 20px 120px;
    }
    
    .features-header h2,
    .pricing-header h2 {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .features-header p,
    .pricing-header p {
        font-size: 18px;
        padding: 0 24px;
    }
    
    .features-grid {
        flex-direction: column;
    }
    
    .feature-card {
        width: 100%;
    }
    
    .cta-banner-text {
        font-size: 32px;
    }
    
    .footer {
        padding: 40px 20px;
    }
    
    .footer-newsletter h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 20px;
    }
    
    .hero-headline {
        font-size: 2.5rem;
        -webkit-text-stroke-width: 0.5px;
        paint-order: stroke fill;
    }
    
    .subscribe-headline {
        font-size: 1.75rem;
        -webkit-text-stroke-width: 1px;
        paint-order: stroke fill;
    }
    
    .email-line {
        width: 100%;
        max-width: 859px;
    }
    
    .features-header h2,
    .pricing-header h2 {
        font-size: 24px;
    }
    
    .pricing-card h3 {
        font-size: 48px;
    }
    
    .features {
        padding: 80px 20px 170px;
    }
    
    .features-content {
        gap: 70px;
    }
    
    .pricing {
        margin-top: -60px;
        padding: 80px 20px 90px;
    }
    
    .cta-banner {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .cta-banner-text {
        font-size: 24px;
    }
}

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

/* Add padding to body to account for fixed header */
body {
    padding-top: 72px;
}
