:root {
    --primary: #e76f51;
    --primary-dark: #d45a3d;
    --accent: #f4a261;
    --accent-2: #ffb877;
    --berry: #e9546b;
    --bg-warm: #fff8ef;
    --bg-white: #ffffff;
    --bg-cream: #fff3e6;
    --text-dark: #1a1714;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --surface: rgba(255, 255, 255, 0.72);
    --surface-solid: #ffffff;
    --border-soft: rgba(231, 111, 81, 0.12);
    --glow: rgba(231, 111, 81, 0.35);
    --gradient: linear-gradient(135deg, #e76f51 0%, #f4a261 100%);
    --gradient-rich: linear-gradient(135deg, #e9546b 0%, #e76f51 45%, #f4a261 100%);
    --gradient-text: linear-gradient(120deg, #e9546b 0%, #e76f51 40%, #f4a261 80%);
    --shadow-sm: 0 2px 8px rgba(26, 23, 20, 0.06);
    --shadow-md: 0 12px 30px rgba(231, 111, 81, 0.12);
    --shadow-lg: 0 30px 60px rgba(231, 111, 81, 0.18);
    --radius: 22px;
    --radius-lg: 32px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    background: var(--bg-warm);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Animated ambient background blobs */
body::before,
body::after {
    content: "";
    position: fixed;
    z-index: -2;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
    pointer-events: none;
}

body::before {
    width: 55vw;
    height: 55vw;
    top: -15vw;
    right: -12vw;
    background: radial-gradient(circle at 30% 30%, #ffd0a8, #f4a261 55%, transparent 72%);
    animation: drift1 22s ease-in-out infinite;
}

body::after {
    width: 48vw;
    height: 48vw;
    bottom: -18vw;
    left: -14vw;
    background: radial-gradient(circle at 60% 40%, #ffc2cd, #e9546b 55%, transparent 72%);
    opacity: 0.4;
    animation: drift2 26s ease-in-out infinite;
}

@keyframes drift1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-6vw, 5vw) scale(1.12); }
}

@keyframes drift2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(7vw, -4vw) scale(1.18); }
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 248, 239, 0.6);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    z-index: 100;
    padding: 1rem 2rem;
    border-bottom: 1px solid transparent;
    transition: background 0.4s var(--ease), border-color 0.4s var(--ease),
        box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
}

header.scrolled {
    background: rgba(255, 248, 239, 0.85);
    border-bottom-color: var(--border-soft);
    box-shadow: 0 8px 30px rgba(26, 23, 20, 0.06);
    padding: 0.65rem 2rem;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary);
    text-decoration: none;
    transition: transform 0.3s var(--ease);
}

.logo:hover {
    transform: translateY(-1px);
}

.logo-icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    overflow: hidden;
    box-shadow: 0 6px 16px var(--glow);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.logo:hover .logo-icon {
    transform: rotate(-6deg) scale(1.08);
    box-shadow: 0 10px 24px var(--glow);
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.25s var(--ease);
}

.nav-links > a:not(.back-link)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--gradient);
    transition: width 0.3s var(--ease);
}

.nav-links > a:not(.back-link):hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.6rem;
    border-radius: 14px;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.btn-primary {
    background: var(--gradient-rich);
    background-size: 180% 180%;
    color: white;
    box-shadow: 0 10px 24px var(--glow);
    animation: hueShift 8s ease infinite;
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: skewX(-20deg);
    transition: left 0.7s var(--ease);
}

.btn-primary:hover::before {
    left: 130%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px var(--glow);
}

@keyframes hueShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Hero Section */
.hero {
    padding: 9rem 2rem 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(2.6rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.hero-text h1 span {
    background: var(--gradient-text);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 6s linear infinite;
}

@keyframes shimmerText {
    to { background-position: 200% center; }
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.app-store-badge {
    height: 54px;
    transition: transform 0.3s var(--ease), filter 0.3s var(--ease);
    filter: drop-shadow(0 8px 18px rgba(26, 23, 20, 0.18));
}

.app-store-badge:hover {
    transform: scale(1.06) translateY(-2px);
    filter: drop-shadow(0 12px 24px rgba(26, 23, 20, 0.28));
}

.hero-image {
    position: relative;
}

.hero-image::before {
    content: "";
    position: absolute;
    inset: 8% 14%;
    background: var(--gradient-rich);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
    z-index: -1;
    animation: pulseGlow 5s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(0.95); opacity: 0.28; }
    50% { transform: scale(1.08); opacity: 0.42; }
}

.phone-mockup {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 30px 60px rgba(26, 23, 20, 0.22));
    animation: float 6s ease-in-out infinite;
    will-change: transform;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-22px) rotate(-1deg); }
}

/* Features Section */
.features {
    padding: 6rem 2rem;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.15rem;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.feature-card {
    background: var(--surface);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2.25rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.feature-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(233, 84, 107, 0.5), rgba(244, 162, 97, 0.5));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.45s var(--ease);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    width: 58px;
    height: 58px;
    background: var(--gradient-rich);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 22px var(--glow);
    transition: transform 0.45s var(--ease);
}

.feature-card:hover .feature-icon {
    transform: scale(1.12) rotate(-6deg);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Screenshots Section */
.screenshots {
    padding: 6rem 2rem;
    overflow: hidden;
}

.screenshots-scroll {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.screenshots-scroll::-webkit-scrollbar {
    display: none;
}

.screenshot-item {
    flex: 0 0 280px;
    scroll-snap-align: center;
    transition: transform 0.45s var(--ease);
}

.screenshot-item:hover {
    transform: translateY(-10px) scale(1.02);
}

.screenshot-item img {
    width: 100%;
    border-radius: 26px;
    box-shadow: 0 24px 48px rgba(26, 23, 20, 0.16);
    transition: box-shadow 0.45s var(--ease);
}

.screenshot-item:hover img {
    box-shadow: 0 32px 64px var(--glow);
}

.screenshot-item p {
    text-align: center;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Privacy Section */
.privacy {
    padding: 6rem 2rem;
    background: radial-gradient(120% 140% at 50% 0%, #2a2320 0%, #1a1714 70%);
    color: white;
    position: relative;
    overflow: hidden;
}

.privacy::before {
    content: "";
    position: absolute;
    inset: -40% -10% auto -10%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(231, 111, 81, 0.35), transparent 65%);
    pointer-events: none;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.privacy h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.privacy h2,
.privacy p {
    position: relative;
}

.privacy p {
    font-size: 1.25rem;
    opacity: 0.85;
    margin-bottom: 2.5rem;
}

.privacy-badges {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.privacy-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1rem 1.5rem;
    border-radius: 14px;
    font-weight: 500;
    transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}

.privacy-badge:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.14);
}

.privacy-badge span {
    font-size: 1.5rem;
}

/* CTA Section */
.cta {
    padding: 6rem 2rem;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--gradient-rich);
    background-size: 180% 180%;
    padding: 4rem;
    border-radius: var(--radius-lg);
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px var(--glow);
    animation: hueShift 10s ease infinite;
}

.cta-content::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 60%);
    animation: pulseGlow 6s ease-in-out infinite;
}

.cta h2,
.cta p,
.cta a {
    position: relative;
}

.cta h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    opacity: 0.92;
    margin-bottom: 2rem;
}

.cta .app-store-badge {
    height: 60px;
}

/* Footer */
footer {
    padding: 3rem 2rem;
    background: rgba(255, 243, 230, 0.6);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-soft);
}

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

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.25s var(--ease);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-copy {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 0.5rem;
    background: rgba(26, 23, 20, 0.05);
    padding: 0.25rem;
    border-radius: 10px;
}

.lang-switcher a {
    padding: 0.5rem 0.75rem;
    border: none;
    background: transparent;
    border-radius: 7px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s var(--ease);
}

.lang-switcher a:hover {
    color: var(--primary);
}

.lang-switcher a.active {
    background: white;
    color: var(--text-dark);
    box-shadow: 0 2px 6px rgba(26, 23, 20, 0.12);
}

/* Hub: intro */
.intro {
    padding: 10rem 2rem 4rem;
    position: relative;
}

.intro-content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.intro h1 {
    font-size: clamp(2.4rem, 5.5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.intro h1 span {
    background: var(--gradient-text);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 6s linear infinite;
}

.intro p {
    font-size: 1.22rem;
    color: var(--text-gray);
    max-width: 660px;
    margin: 0 auto;
}

/* Hub: project cards */
.projects {
    padding: 4rem 2rem 6rem;
    position: relative;
}

.projects-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.project-card {
    background: var(--surface);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2.25rem;
    border-radius: var(--radius);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow-sm);
}

.project-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -130%;
    width: 80%;
    height: 100%;
    background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    transform: skewX(-18deg);
    transition: left 0.8s var(--ease);
    pointer-events: none;
}

.project-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(233, 84, 107, 0.6), rgba(244, 162, 97, 0.6));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.45s var(--ease);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.project-card:hover::before {
    left: 140%;
}

.project-card:hover::after {
    opacity: 1;
}

.project-card.coming .project-icon {
    opacity: 0.75;
}

.project-icon {
    width: 66px;
    height: 66px;
    background: var(--gradient-rich);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    box-shadow: 0 12px 26px var(--glow);
    transition: transform 0.45s var(--ease);
}

.project-card:hover .project-icon {
    transform: scale(1.1) rotate(-6deg);
}

.project-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
}

.project-card .tagline {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: -0.5rem;
}

.project-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.55;
    flex-grow: 1;
}

.project-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.7rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 999px;
    background: rgba(26, 23, 20, 0.06);
    color: var(--text-gray);
}

.badge.live {
    background: rgba(34, 197, 94, 0.14);
    color: #15803d;
}

.badge.live::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 5px;
    border-radius: 50%;
    background: #22c55e;
    vertical-align: middle;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
    animation: livePulse 2s ease-out infinite;
}

@keyframes livePulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
    70% { box-shadow: 0 0 0 7px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.badge.soon {
    background: rgba(231, 111, 81, 0.16);
    color: var(--primary-dark);
}

.project-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: gap 0.3s var(--ease);
}

.project-card:hover .project-link {
    gap: 0.7rem;
}

/* Hub: contact strip */
.contact {
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
}

.contact h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.contact p {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 540px;
    margin: 0 auto 1.5rem;
}

.contact a.email {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.25rem;
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.contact a.email::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--gradient);
    transition: width 0.35s var(--ease);
}

.contact a.email:hover::after {
    width: 100%;
}

/* Subpage breadcrumb back link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: gap 0.3s var(--ease), color 0.25s var(--ease);
}

.back-link:hover {
    color: var(--primary);
    gap: 0.6rem;
}

/* Coming-soon hero variant */
.hero.coming-soon {
    text-align: center;
}

.hero.coming-soon .hero-content {
    grid-template-columns: 1fr;
}

.hero.coming-soon .hero-text {
    max-width: 720px;
    margin: 0 auto;
}

.hero.coming-soon h1 {
    font-size: clamp(2.4rem, 5vw, 3.2rem);
}

.hero.coming-soon p {
    margin-left: auto;
    margin-right: auto;
}

.hero.coming-soon .hero-buttons {
    justify-content: center;
}

/* Scroll-reveal animations (applied by app.js) */
.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
    will-change: opacity, transform;
}

.reveal.in {
    opacity: 1;
    transform: none;
}

/* Page load entrance for hero/intro text */
.intro-content,
.hero-text {
    animation: rise 0.9s var(--ease) both;
}

.hero-image {
    animation: rise 1s var(--ease) 0.15s both;
}

@keyframes rise {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: none; }
}

/* Responsive */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }

    .phone-mockup {
        max-width: 280px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links > a:not(.back-link) {
        display: none;
    }
}

@media (max-width: 640px) {
    header,
    header.scrolled {
        padding: 0.75rem 1.25rem;
    }

    .cta-content {
        padding: 2.5rem 1.5rem;
    }

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

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.25rem;
    }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
