:root {
    --bg-dark: #0a0a12;
    /* Dark Blue/Black background */
    --text-white: #ffffff;
    --accent-orange: #ff5e3a;
    /* Adjust based on preference */
    --font-main: 'Montserrat', sans-serif;
    --transition-speed: 0.3s;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Typography */
h1 {
    font-weight: 800;
    line-height: 1.1;
}

h1.hero-title {
    font-size: clamp(50px, 6vw, 96px);
    /* Reduced from 60px/144px */
    text-align: center;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.product-big-title {
    font-size: clamp(40px, 6vw, 144px);
    font-weight: 800;
    text-align: center;
    line-height: 1;
    text-transform: uppercase;
}

/* Sections General */
section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Buttons */
.cta-button-small {
    background-color: var(--accent-orange);
    color: white;
    padding: 15px 30px;
    border-radius: 99px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.cta-button-small:hover {
    transform: scale(1.1);
}

.cta-button-large {
    background-color: var(--accent-orange);
    color: white;
    padding: 20px 40px;
    border-radius: 18px;
    /* Requested 18px */
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-top: 20px;
    transition: transform 0.2s ease;
}

.cta-button-large:hover {
    transform: scale(1.05);
}

.cta-button-hero {
    background-color: var(--accent-orange);
    color: white;
    padding: 15px 50px;
    border-radius: 80px;
    /* Requested 80px */
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    /* Changed from inline-block to block */
    width: fit-content;
    /* Ensure it doesn't span full width */
    margin: 30px auto 0 auto;
    /* Center with margin auto */
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    z-index: 200;
    cursor: pointer;
    position: relative;
}

.cta-button-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.5);
    background-color: #ff5520;
}

/* Hero */
/* Hero */
.hero-section {
    height: 100vh;
    overflow: hidden;
    position: relative;
    z-index: 1;
	background: #FEFBF5 !important;
}

.animated-word-wrapper {
    display: block;
    height: 1.2em;
    overflow: visible;
    position: relative;
    color: var(--accent-orange);
    margin-top: 10px;
    z-index: 10;
}

.animated-word {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    opacity: 0;
}

/* TOC Section (Styles below in proper block) */

.product-content {
    text-align: center;
    z-index: 5;
    width: 100%;
}

.product-desc {
    max-width: 600px;
    text-align: center;
    font-size: 20px;
    margin: 30px auto;
    opacity: 0;
    transform: translateY(50px);
}

/* Door Reveal Wrapper */
#door-reveal-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    /* Wrapper pins, doors spread, TOC is visible behind */
}

.door-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    /* Above TOC */
    pointer-events: none;
    /* Let clicks pass through if needed, though mostly for visual reveal */
}

.door-top,
.door-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    height: 50%;
    /* Start closed (50% each) */
    background-color: #001BB7;
    /* Dark Blue match */
    z-index: 2;
}

.door-top {
    top: 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    /* Clearer separation line */
}

.door-bottom {
    bottom: 0;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

/* TOC Section */
.toc-section {
    background-color: #001BB7;
    /* Dark Blue Match, was --bg-dark */
    height: 100%;
    /* Fill wrapper */
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    /* Behind doors */
    top: 0;
    left: 0;
    z-index: 1;
}

.product-container {
    display: flex;
    width: 90%;
    max-width: 1200px;
    align-items: center;
    justify-content: space-between;
    z-index: 5;
    position: relative;
}

/* Full Product Sections */
.full-product-section {
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: var(--bg-dark);
}

.row-normal {
    flex-direction: row;
}

.row-reverse {
    flex-direction: row-reverse;
}

.text-col {
    width: 45%;
}

.text-col h2 {
    font-size: 60px;
    margin-bottom: 20px;
    font-weight: 800;
}

.text-col p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #ccc;
}

.visual-col {
    width: 45%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-placeholder {
    width: 100%;
    height: 100%;
    background: #1a1a25;
    border-radius: 20px;
    border: 1px solid #333;
}

.spinning-svg {
    border-radius: 50%;
    /* Circle for SVG */
    width: 300px;
    height: 300px;
}

/* Background Circles */
.parallax-bg-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Behind content */
}

.circle {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    /* 5% transparency */
    pointer-events: none;
}

.c1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: -10%;
}

.c2 {
    width: 600px;
    height: 600px;
    bottom: -10%;
    right: -10%;
}

.c3 {
    width: 200px;
    height: 200px;
    top: 40%;
    left: 40%;
}

.c4 {
    width: 300px;
    height: 300px;
    top: 20%;
    right: 20%;
}

/* NEW FEATURES SECTION (Replaces Slider) - Static H1 */
/* NEW FEATURES SECTION (Replaces Slider) - Static H1 */
.features-section {
    background-color: #001BB7;
    /* Requested Dark Blue */
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Center Vertically */
}

.features-content-wrapper {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.features-title {
    /* Removed absolute positioning to stack with ticker */
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    text-align: center;
    font-size: clamp(40px, 6vw, 144px);
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0 0 50px 0;
    /* Add bottom margin for ticker */
}

.plugins-columns {
    display: flex;
    justify-content: space-between;
    /* Spread columns */
    gap: 40px;
    /* Reduced gap */
    width: 90%;
    /* Wider container */
    max-width: 1000px;
    margin-top: 20px;
    /* Removed flex-wrap to force columns side-by-side on desktop */
}

.plugins-columns ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    /* Center text within columns */
    flex: 1;
    /* Force equal width 50-50 */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.plugins-columns li {
    font-size: clamp(20px, 3vw, 42px);
    /* Reduced by ~30% */
    font-weight: 800;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    transition: transform 0.3s ease, color 0.3s ease;
    white-space: nowrap;
    /* Prevent breaking names */
}

.plugins-columns li:hover {
    transform: scale(1.05);
    /* Subtle scale instead of move */
    color: var(--accent-orange);
    cursor: default;
}

@media (max-width: 768px) {
    .plugins-columns {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .plugins-columns ul {
        text-align: center;
    }
}

/* Old features-title style replaced above */

.features-title span {
    display: inline-block;
    margin: 0 10px;
    /* Ready for future animation */
}


/* Features Title Animation Staging */
/* Will be animated in main.js if needed or just static for now */

/* Blog Section (Pinned) */
.blog-section {
    min-height: 100vh;
    background-color: #E9E9E9;
    color: var(--bg-dark);
    padding: 100px 5%;
    display: block;
    overflow: visible;
}

.blog-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-sticky-side {
    width: 35%;
    position: sticky;
    top: 150px;
    padding-right: 50px;
    border-right: 1px solid #eee;
}

.blog-sticky-side h2 {
    font-size: 50px;
    margin-bottom: 20px;
    font-weight: 800;
}

.blog-feed-side {
    width: 60%;
}

.blog-card-vertical {
    display: flex;
    margin-bottom: 60px;
    align-items: center;
    transition: transform 0.3s ease;
}

.blog-card-vertical:hover {
    transform: translateX(10px);
}

.card-img {
    width: 150px;
    height: 150px;
    border-radius: 12px;
    margin-right: 30px;
    flex-shrink: 0;
}

.card-content h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.card-content p {
    font-size: 16px;
    color: #666;
}

/* About/Team Section */
.about-section {
    min-height: 100vh;
    background-color: #0d0d10;
    padding: 100px 5%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-container {
    max-width: 1200px;
    width: 100%;
}

.team-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 100px;
}

.team-col {
    width: 45%;
    text-align: center;
    padding: 40px;
    background: #14141e;
    border-radius: 20px;
}

.avatar-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #333;
    margin: 0 auto 20px;
}

.role {
    color: var(--accent-orange);
    font-weight: 700;
    margin-bottom: 10px;
}

.cats-row {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.cat-card {
    text-align: center;
}

.cat-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 15px;
}

.black-cat {
    background-color: #000;
    border: 2px solid #333;
}

.furry-cat {
    background-color: #a0522d;
}

/* Footer Ticker */
.main-footer {
    background-color: #001BB7;
    padding: 50px 0 20px;
    overflow: hidden;
}

/* Partners Background */
.partners-ticker {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    font-size: 40px;
    font-weight: 700;
    color: white;
    /* White Title/Text */
    text-transform: uppercase;
    padding: 40px 0;
    display: flex;
    background-color: #001BB7;
    /* Partners BG */
}

.ticker-content {
    display: inline-block;
    padding-left: 20px;
}

/* Footer Expanded */
.footer-grid {
    display: flex;
    justify-content: space-around;
    padding: 50px 0;
    max-width: 1200px;
    margin: 0 auto;
    color: #ccc;
    flex-wrap: wrap;
}

.footer-col {
    width: 30%;
    margin-bottom: 30px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col a {
    color: white;
    /* All links white */
    line-height: 2;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--accent-orange);
    /* Orange hover */
}

/* Explore Link */
.explore-link {
    color: white;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.explore-link:hover {
    opacity: 1;
    text-decoration: underline;
}

.thin-arrow {
    font-weight: 300;
    /* Thin arrow */
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

/* Newsletter Input */
.newsletter-form input {
    width: 60%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    outline: none;
    background: white;
    /* Changed to White */
    color: #333;
    /* Dark Text */
}

.newsletter-form button {
    border-radius: 16px;
    /* Requested 16px */
    cursor: pointer;
    background-color: var(--accent-orange);
    color: white;
    border: none;
    padding: 10px 20px;
    font-weight: 700;
    transition: transform 0.2s;
}

.newsletter-form button:hover {
    transform: scale(1.05);
}

.footer-bottom {
    text-align: center;
    color: white;
    /* Changed to White per request/implied */
    font-size: 14px;
    margin-top: 30px;
    width: 100%;
    opacity: 0.7;
}