/* ============================================
   SUPREME TRIMMER ARGENTINA — COMING SOON
   Brand style: Black + White + Red accent
   Font: Figtree (same as supremetrimmer.com)
   Copy tone: Argentine, professional, bold
   ============================================ */

/* --- Custom Properties --- */
:root {
    --color-bg: #000000;
    --color-bg-subtle: #080808;
    --color-surface: #111111;
    --color-surface-hover: #1a1a1a;
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-hover: rgba(255, 255, 255, 0.15);

    --color-white: #ffffff;
    --color-white-90: rgba(255, 255, 255, 0.9);
    --color-white-70: rgba(255, 255, 255, 0.7);
    --color-white-50: rgba(255, 255, 255, 0.5);
    --color-white-30: rgba(255, 255, 255, 0.3);
    --color-white-15: rgba(255, 255, 255, 0.15);
    --color-white-08: rgba(255, 255, 255, 0.08);
    --color-white-05: rgba(255, 255, 255, 0.05);

    /* Primary accent — RED (matches IG posts) */
    --color-red: #e63946;
    --color-red-bright: #ff3b4a;
    --color-red-glow: rgba(230, 57, 70, 0.15);
    --color-red-glow-strong: rgba(230, 57, 70, 0.25);

    /* Secondary accent — cyan from ST Pro logo */
    --color-accent: #5ecce6;
    --color-accent-glow: rgba(94, 204, 230, 0.12);

    --font-main: 'Figtree', sans-serif;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Reset --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-white);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* --- Red text utility --- */
.text-red {
    color: var(--color-red);
}

/* --- Background Grid Pattern --- */
.bg-grid {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(var(--color-white-05) 1px, transparent 1px),
        linear-gradient(90deg, var(--color-white-05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 100%);
    opacity: 0.4;
}

/* --- Ambient Light Effects --- */
.ambient-light {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(140px);
}

.ambient-light--1 {
    width: 600px;
    height: 600px;
    background: var(--color-red);
    top: -20%;
    right: -15%;
    opacity: 0.05;
    animation: ambientDrift 20s ease-in-out infinite;
}

.ambient-light--2 {
    width: 500px;
    height: 500px;
    background: var(--color-accent);
    bottom: -25%;
    left: -15%;
    opacity: 0.03;
    animation: ambientDrift 25s ease-in-out infinite reverse;
}

@keyframes ambientDrift {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(20px, -15px); }
    66% { transform: translate(-15px, 10px); }
}

/* --- Page Layout --- */
.page {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* --- Announcement Bar --- */
.announcement {
    background: var(--color-red);
    padding: 6px 1rem;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 110;
}

.announcement__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.announcement__text {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--color-white);
    text-transform: uppercase;
}

/* --- Top Bar --- */
.topbar {
    position: fixed;
    top: 28px;
    left: 0;
    right: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.7);
    border-bottom: 1px solid var(--color-border);
}

.topbar__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar__left {
    display: flex;
    align-items: center;
}

.topbar__logo {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    object-fit: contain;
}

.topbar__brand {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--color-white-90);
}

.topbar__nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.topbar__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    color: var(--color-white-50);
    text-decoration: none;
    transition: all 0.3s var(--ease-out);
    background: var(--color-white-05);
    border: 1px solid transparent;
}

.topbar__link:hover {
    color: var(--color-white);
    background: var(--color-white-08);
    border-color: var(--color-border-hover);
    transform: translateY(-1px);
}

/* --- Hero Section --- */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7rem 2rem 4rem;
    min-height: 100vh;
}

.hero__content {
    text-align: center;
    max-width: 720px;
    width: 100%;
    animation: heroReveal 1s var(--ease-out) forwards;
    opacity: 0;
}

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

/* --- Logo --- */
.logo-container {
    margin-bottom: 2rem;
    animation: logoScale 1.2s var(--ease-out) 0.2s forwards;
    opacity: 0;
}

@keyframes logoScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.logo {
    width: 160px;
    height: auto;
    border-radius: 16px;
    filter: drop-shadow(0 0 40px rgba(94, 204, 230, 0.12));
    transition: filter 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.logo:hover {
    filter: drop-shadow(0 0 50px rgba(94, 204, 230, 0.2));
    transform: scale(1.03);
}

/* --- Coming Soon Badge --- */
.badge-coming {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 100px;
    background: var(--color-red-glow);
    border: 1px solid rgba(230, 57, 70, 0.2);
    margin-bottom: 2rem;
    animation: fadeInDown 0.6s var(--ease-out) 0.4s forwards;
    opacity: 0;
}

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

.badge-coming__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-red);
    animation: blink 1.5s ease-in-out infinite;
    box-shadow: 0 0 6px var(--color-red);
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.badge-coming__text {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--color-red);
}

/* --- Title --- */
.hero__title {
    font-family: var(--font-main);
    font-size: clamp(1.8rem, 6vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--color-white);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    animation: titleSlide 0.8s var(--ease-out) 0.5s forwards;
    opacity: 0;
}

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

/* --- Tagline --- */
.hero__tagline {
    font-size: clamp(0.85rem, 2.5vw, 1rem);
    font-weight: 400;
    color: var(--color-white-50);
    letter-spacing: 0.03em;
    line-height: 1.6;
    margin-bottom: 2rem;
    animation: fadeIn 0.6s var(--ease-out) 0.7s forwards;
    opacity: 0;
}

.hero__tagline strong {
    color: var(--color-white-90);
    font-weight: 700;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* --- Separator --- */
.separator {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    animation: fadeIn 0.6s var(--ease-out) 0.8s forwards;
    opacity: 0;
}

.separator__line {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-red), transparent);
    border-radius: 2px;
}

/* --- Value Props --- */
.value-props {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    animation: fadeIn 0.6s var(--ease-out) 0.9s forwards;
    opacity: 0;
    flex-wrap: wrap;
}

.value-prop {
    text-align: center;
}

.value-prop__label {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--color-white-90);
    margin-bottom: 2px;
    text-transform: uppercase;
}

.value-prop__desc {
    display: block;
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--color-white-30);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.value-prop__divider {
    width: 1px;
    height: 28px;
    background: var(--color-white-15);
}

/* --- Category Tags --- */
.categories {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    animation: fadeIn 0.6s var(--ease-out) 1s forwards;
    opacity: 0;
}

.category-tag {
    display: inline-block;
    padding: 8px 18px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--color-white-70);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    background: var(--color-white-05);
    transition: all 0.3s var(--ease-out);
    cursor: default;
}

.category-tag:hover {
    color: var(--color-white);
    border-color: var(--color-white-30);
    background: var(--color-white-08);
    transform: translateY(-2px);
}

.category-tag--red {
    border-color: rgba(230, 57, 70, 0.3);
    color: var(--color-red);
    background: var(--color-red-glow);
}

.category-tag--red:hover {
    border-color: var(--color-red);
    color: var(--color-red-bright);
    box-shadow: 0 4px 20px var(--color-red-glow);
}

/* --- CTA Button --- */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 100px;
    background: var(--color-white);
    color: var(--color-bg);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    transition: all 0.4s var(--ease-out);
    animation: fadeIn 0.6s var(--ease-out) 1.1s forwards;
    opacity: 0;
    border: none;
}

.cta-button:hover {
    background: var(--color-red);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px var(--color-red-glow-strong);
}

.cta-button:active {
    transform: translateY(-1px);
}

.cta-button svg {
    flex-shrink: 0;
}

/* --- Footer --- */
.footer {
    border-top: 1px solid var(--color-border);
    background: var(--color-bg-subtle);
    padding: 2rem;
}

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

.footer__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer__icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    object-fit: contain;
}

.footer__brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer__name {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-white-90);
    letter-spacing: 0.03em;
}

.footer__domain {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--color-white-30);
    letter-spacing: 0.05em;
}

.footer__right {
    text-align: right;
}

.footer__slogan {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-white-50);
    margin-bottom: 4px;
    font-style: italic;
}

.footer__copy {
    font-size: 0.65rem;
    color: var(--color-white-30);
    letter-spacing: 0.03em;
}

/* --- Responsive --- */
@media (max-width: 640px) {
    .announcement__text {
        font-size: 0.55rem;
        letter-spacing: 0.08em;
    }

    .hero {
        padding: 6.5rem 1.25rem 3rem;
    }

    .logo {
        width: 130px;
    }

    .hero__title {
        font-size: clamp(1.5rem, 7vw, 2.2rem);
    }

    .value-props {
        gap: 1rem;
    }

    .value-prop__divider {
        display: none;
    }

    .value-props {
        flex-direction: column;
        gap: 0.75rem;
    }

    .categories {
        gap: 0.4rem;
    }

    .category-tag {
        padding: 6px 12px;
        font-size: 0.6rem;
    }

    .cta-button {
        padding: 12px 22px;
        font-size: 0.65rem;
    }

    .footer__inner {
        flex-direction: column;
        text-align: center;
    }

    .footer__brand {
        justify-content: center;
    }

    .footer__right {
        text-align: center;
    }

    .ambient-light--1 {
        width: 350px;
        height: 350px;
    }

    .ambient-light--2 {
        width: 300px;
        height: 300px;
    }

    .topbar__brand {
        font-size: 0.65rem;
        letter-spacing: 0.12em;
    }
}

@media (max-width: 380px) {
    .hero__title {
        font-size: 1.4rem;
    }

    .logo {
        width: 110px;
    }

    .cta-button span {
        font-size: 0.6rem;
    }
}

/* --- Selection color --- */
::selection {
    background: var(--color-red);
    color: var(--color-white);
}

::-moz-selection {
    background: var(--color-red);
    color: var(--color-white);
}
