/* Highly Modern Minimalist Pharmaceutical Layout */
:root {
    --bg-color: #fafbfc; /* Extremely clean clinical white/grey */
    --text-primary: #0f172a; /* Slate 900 for sharp contrast */
    --text-secondary: #64748b; /* Slate 500 for softer readable text */
    --accent: #2563eb; /* Royal/Medical blue */
    --accent-light: #eff6ff;
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Page Layout */
.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 3rem 6rem;
    max-width: 1600px;
    margin: 0 auto;
}

/* Header */
.header {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    animation: fadeDown 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.brand-logo {
    height: 48px;
    object-fit: contain;
}

/* Hero Section Grid */
.hero-section {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 8rem;
    align-items: center;
    margin-top: 2rem;
}

/* Typography & Text Section */
.text-content {
    opacity: 0;
    animation: fadeRight 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.2s;
}

.badge {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background-color: var(--accent-light);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 100px;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.1);
}

.headline {
    font-size: 5rem;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 2rem;
}

.headline .light {
    font-weight: 200;
    color: var(--text-secondary);
}

.headline .bold {
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-primary) 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 400;
    max-width: 480px;
    margin-bottom: 4rem;
    line-height: 1.7;
}

.coming-soon-text {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--text-primary);
    position: relative;
    padding-left: 4rem;
    display: inline-flex;
    align-items: center;
}

.coming-soon-text::before {
    content: '';
    position: absolute;
    left: 0;
    width: 3rem;
    height: 2px;
    background-color: var(--accent);
}

/* Video Section */
.media-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeLeft 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.4s;
}

/* Innovative 3D Video Container */
.video-container {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 
        0 40px 80px -20px rgba(0, 0, 0, 0.1),
        0 20px 40px -10px rgba(0, 0, 0, 0.05);
    /* Subtle 3D rotation for an innovative tech feel */
    transform: perspective(1200px) rotateY(-8deg) rotateX(4deg);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.6s ease;
    z-index: 2;
    border: 1px solid rgba(255,255,255,1);
}

.video-container:hover {
    transform: perspective(1200px) rotateY(-2deg) rotateX(1deg) translateY(-10px);
    box-shadow: 
        0 50px 100px -20px rgba(0, 0, 0, 0.15),
        0 30px 60px -15px rgba(0, 0, 0, 0.08);
}

.showcase-video {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
    background-color: #fff;
    outline: none;
}

/* Decorative Elements */
.decor-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    z-index: 1;
}

/* Animations */
@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

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

/* Responsive Design */
@media (max-width: 1200px) {
    .page-wrapper { padding: 3rem 4rem; }
    .hero-section { gap: 4rem; grid-template-columns: 1fr 1fr; }
    .headline { font-size: 4rem; }
}

@media (max-width: 900px) {
    .page-wrapper { padding: 2rem 2rem; }
    .hero-section {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    .text-content { display: flex; flex-direction: column; align-items: center; }
    .coming-soon-text::before { display: none; }
    .coming-soon-text { padding-left: 0; justify-content: center; }
    .video-container { transform: none; box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1); }
    .video-container:hover { transform: translateY(-5px); }
    .header { justify-content: center; margin-bottom: 2rem; }
}

@media (max-width: 600px) {
    .page-wrapper { padding: 1.5rem 1.5rem; }
    .headline { font-size: 3rem; }
    .description { font-size: 1.1rem; }
    .badge { font-size: 0.75rem; }
    .brand-logo { height: 40px; }
}
