/* ==========================================================================
   LÊ PHƯỚC TOÀN - PERSONAL MARKETING PORTFOLIO
   Design System: Minara Tech Aesthetic (Clean White + Deep Navy Hero + Vibrant Coral Orange Accent)
   ========================================================================== */

body.futon-site{
    /* Color Palette - Minara Inspired */
    --bg-body: #F7F8FC;
    --bg-white: #FFFFFF;
    --bg-hero: linear-gradient(135deg, #090C19 0%, #121829 40%, #1A102F 100%);
    
    /* Primary Accent - Vibrant Coral Orange */
    --accent-orange: #FF5429;
    --accent-orange-hover: #E04018;
    --accent-orange-light: #FFF2EF;
    --accent-orange-glow: rgba(255, 84, 41, 0.25);

    /* Secondary Accents - Tech Blue, Violet & Soft Pastels */
    --accent-blue: #2563EB;
    --accent-blue-light: #EFF6FF;
    --accent-purple: #7C3AED;
    --accent-purple-light: #F3E8FF;
    --accent-green: #10B981;
    --accent-green-light: #ECFDF5;

    /* Text Colors */
    --text-dark: #0F172A;
    --text-body: #334155;
    --text-secondary: #64748B;
    --text-muted: #94A3B8;
    --text-light: #F8FAFC;

    /* Borders & Shadows */
    --border-light: #E2E8F0;
    --border-orange: rgba(255, 84, 41, 0.3);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 10px 25px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.08);
    --shadow-orange: 0 12px 28px rgba(255, 84, 41, 0.3);

    /* Typography */
    --font-heading: "Montserrat", -apple-system, sans-serif;
    --font-body: "Montserrat", -apple-system, sans-serif;

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Global Base */
.futon-shell *, .futon-shell *::before, .futon-shell *::after{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html{
    scroll-behavior: smooth;
    font-size: 16px;
}

body.futon-site{
    background-color: var(--bg-body);
    color: var(--text-body);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.futon-shell .container{
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Card Base */
.futon-shell .card-white{
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.futon-shell .card-white:hover{
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 84, 41, 0.2);
}

/* Typography & Utility Classes */
.futon-shell h1, .futon-shell h2, .futon-shell h3, .futon-shell h4, .futon-shell h5, .futon-shell h6{
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.25;
}

.futon-shell .gradient-text{
    background: linear-gradient(135deg, #FF5429 0%, #FF2A6D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.futon-shell .text-orange{ color: var(--accent-orange); }
.futon-shell .text-blue{ color: var(--accent-blue); }

/* Buttons */
.futon-shell .btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 26px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    outline: none;
}

.futon-shell .btn-orange{
    background: var(--accent-orange);
    color: #FFFFFF;
    box-shadow: var(--shadow-orange);
}

.futon-shell .btn-orange:hover{
    background: var(--accent-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(255, 84, 41, 0.4);
}

.futon-shell .btn-outline-dark{
    background: #F1F5F9;
    color: var(--text-dark);
    border: 1px solid var(--border-light);
}

.futon-shell .btn-outline-dark:hover{
    background: #E2E8F0;
    border-color: #CBD5E1;
}

.futon-shell .btn-lg{
    padding: 16px 36px;
    font-size: 1.05rem;
}

.futon-shell .btn-block{
    width: 100%;
}

/* Header & Navigation Bar (Light Theme Always) */
.futon-shell .navbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition-normal);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.futon-shell .navbar.scrolled{
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
    border-bottom-color: var(--border-light);
}

.futon-shell .nav-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.futon-shell .logo{
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.futon-shell .logo-badge{
    width: 42px;
    height: 42px;
    background: var(--accent-orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    color: #FFFFFF;
    box-shadow: var(--shadow-orange);
}

.futon-shell .logo-text{
    display: flex;
    flex-direction: column;
}

.futon-shell .logo-text .name{
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.futon-shell .logo-text .subtitle{
    font-size: 0.65rem;
    color: var(--accent-orange);
    font-weight: 800;
    letter-spacing: 1px;
}

.futon-shell .nav-menu{
    display: flex;
    align-items: center;
    gap: 32px;
}

.futon-shell .nav-link{
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    transition: var(--transition-fast);
}

.futon-shell .nav-link:hover, .futon-shell .nav-link.active{
    color: var(--accent-orange) !important;
}

/* Dropdown Navigation */
.futon-shell .nav-dropdown{
    position: relative;
}

.futon-shell .nav-dropdown > .nav-link{
    display: inline-flex;
    align-items: center;
}

.futon-shell .nav-dropdown-menu{
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
    padding: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
}

.futon-shell .nav-dropdown:hover .nav-dropdown-menu{
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.futon-shell .nav-dropdown-menu a{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: var(--text-body);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.futon-shell .nav-dropdown-menu a:hover{
    background: var(--accent-orange-light);
    color: var(--accent-orange);
}

.futon-shell .nav-dropdown-menu a i{
    width: 18px;
    text-align: center;
    color: var(--accent-orange);
    font-size: 0.85rem;
}

.futon-shell .nav-actions{
    display: flex;
    align-items: center;
    gap: 16px;
}

.futon-shell .mobile-toggle{
    display: none;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section (Ultra Clean Light Theme) */
.futon-shell .hero-section{
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 50%, #FFF7F5 100%);
    position: relative;
    padding: 160px 0 90px;
    overflow: hidden;
    border-bottom: 1px solid var(--border-light);
}

/* Soft Warm Glowing Orange Aura */
.futon-shell .hero-section::before{
    content: "";
    position: absolute;
    top: -5%;
    left: 45%;
    transform: translateX(-50%);
    width: 650px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 84, 41, 0.12) 0%, rgba(255, 247, 245, 0) 70%);
    filter: blur(60px);
    pointer-events: none;
}

.futon-shell .hero-grid{
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.futon-shell .pill-badge{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--accent-orange-light);
    border: 1px solid rgba(255, 84, 41, 0.25);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--accent-orange);
    margin-bottom: 24px;
}

.futon-shell .pill-badge .dot{
    width: 8px;
    height: 8px;
    background: var(--accent-orange);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-orange);
}

.futon-shell .hero-title{
    font-size: 3.8rem;
    font-weight: 900;
    color: var(--text-dark);
    letter-spacing: -1px;
    margin-bottom: 24px;
    line-height: 1.1;
}

.futon-shell .hero-title .gradient-orange{
    background: linear-gradient(135deg, #FF5429 0%, #FF8C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.futon-shell .hero-description{
    font-size: 1.12rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 600px;
    line-height: 1.7;
}

.futon-shell .hero-description strong{
    color: var(--text-dark);
}

.futon-shell .hero-cta-group{
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
}

.futon-shell .hero-stats{
    display: flex;
    align-items: center;
    gap: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--border-light);
}

.futon-shell .stat-item{
    display: flex;
    flex-direction: column;
}

.futon-shell .stat-number{
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--accent-orange);
}

.futon-shell .stat-label{
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.futon-shell .stat-divider{
    width: 1px;
    height: 36px;
    background: var(--border-light);
}

/* Hero Profile Card (Light Card with Real Portrait) */
.futon-shell .hero-card{
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 36px;
    text-align: center;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    position: relative;
    transition: var(--transition-normal);
}

.futon-shell .hero-card:hover{
    box-shadow: 0 30px 60px rgba(255, 84, 41, 0.12);
    border-color: rgba(255, 84, 41, 0.3);
}

.futon-shell .avatar-wrapper{
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 24px;
}

.futon-shell .avatar-ring{
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF5429, #FF8C00);
    opacity: 0.85;
    filter: blur(5px);
}

.futon-shell .avatar-box{
    position: relative;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #FFFFFF;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.futon-shell .portrait-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 50%;
    transition: var(--transition-normal);
}

.futon-shell .avatar-box:hover .portrait-img{
    transform: scale(1.06);
}

.futon-shell .status-pill{
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ECFDF5;
    border: 1px solid #10B981;
    color: #059669;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.futon-shell .hero-card h3{
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 4px;
    font-weight: 900;
}

.futon-shell .hero-card .role{
    font-size: 0.9rem;
    color: var(--accent-orange);
    font-weight: 700;
    margin-bottom: 20px;
}

.futon-shell .skill-pills{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.futon-shell .skill-pill{
    font-size: 0.78rem;
    background: #F1F5F9;
    border: 1px solid var(--border-light);
    color: var(--text-body);
    font-weight: 600;
    padding: 5px 12px;
    border-radius: var(--radius-sm);
}

.futon-shell .brand-trust-strip{
    background: var(--accent-orange);
    padding: 13px 0;
    overflow: hidden;
    position: relative;
}
.futon-shell .marquee-track{
    display:flex; width:max-content; animation:marquee-scroll 28s linear infinite; will-change:transform;
}
.futon-shell .brand-trust-strip:hover .marquee-track{ animation-play-state:paused; }
.futon-shell .marquee-content[aria-hidden="true"] a{ pointer-events:none; }
.futon-shell .marquee-content{
    display:flex; align-items:center; gap:52px; flex-shrink:0; padding-right:52px;
}
.futon-shell .brand-logo-item{
    display:inline-flex; align-items:center; justify-content:center; flex:0 0 auto;
    min-width:112px; height:38px; text-decoration:none; opacity:.94;
    transition:opacity .2s ease, transform .2s ease;
}
.futon-shell a.brand-logo-item:hover{ opacity:1; transform:translateY(-1px); }
.futon-shell .brand-logo-item img{
    display:block; width:auto; height:auto; max-width:150px; max-height:31px;
    object-fit:contain; filter:brightness(0) invert(1);
}
.futon-shell .brand-logo-fallback{
    font-family:var(--font-heading); font-weight:800; font-size:.84rem; color:#fff;
    letter-spacing:1.25px; white-space:nowrap; text-transform:uppercase;
}
@keyframes marquee-scroll { 0%{transform:translate3d(0,0,0)} 100%{transform:translate3d(-50%,0,0)} }
@media (prefers-reduced-motion: reduce) {
    .futon-shell .marquee-track{animation:none}
    .futon-shell .brand-trust-strip{overflow-x:auto;scrollbar-width:none}
    .futon-shell .brand-trust-strip::-webkit-scrollbar{display:none}
}

/* Philosophy Quote Section */
.futon-shell .philosophy-section{
    padding: 60px 0;
}

.futon-shell .philosophy-card{
    background: linear-gradient(135deg, #FFF7F5 0%, #FFFFFF 50%, #F5F3FF 100%);
    border: 1px solid #FED7AA;
    border-radius: var(--radius-xl);
    padding: 48px 56px;
    position: relative;
    box-shadow: 0 20px 40px rgba(255, 84, 41, 0.06);
}

.futon-shell .quote-icon{
    font-size: 3rem;
    color: var(--accent-orange);
    opacity: 0.25;
    margin-bottom: 8px;
}

.futon-shell .philosophy-quote{
    font-family: var(--font-body);
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 32px;
}

.futon-shell .philosophy-quote span{
    color: var(--accent-orange);
    font-weight: 700;
}

.futon-shell .philosophy-quote strong{
    color: #0F172A;
    background: var(--accent-orange-light);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
}

.futon-shell .philosophy-author{
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border-light);
    padding-top: 20px;
}

.futon-shell .author-name{
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--text-dark);
    letter-spacing: 1px;
}

.futon-shell .author-title{
    font-size: 0.85rem;
    color: var(--accent-orange);
    font-weight: 700;
}

/* Sections Base (Light Background) */
.futon-shell .section{
    padding: 100px 0;
}

.futon-shell .section-header{
    margin-bottom: 60px;
}

.futon-shell .text-center{ text-align: center; }

.futon-shell .section-subtitle{
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--accent-orange);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.futon-shell .section-title{
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 800;
}

.futon-shell .section-desc{
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto;
}

/* Advantage Grid (Minara Inspired White Cards) */
.futon-shell .advantage-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.futon-shell .advantage-card{
    padding: 36px;
}

.futon-shell .icon-box{
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 24px;
}

.futon-shell .box-orange{ background: var(--accent-orange-light); color: var(--accent-orange); }
.futon-shell .box-blue{ background: var(--accent-blue-light); color: var(--accent-blue); }
.futon-shell .box-purple{ background: var(--accent-purple-light); color: var(--accent-purple); }
.futon-shell .box-green{ background: var(--accent-green-light); color: var(--accent-green); }

.futon-shell .advantage-card h3{
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.futon-shell .advantage-card p{
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Services Grid (Minara Styled Cards with 3D feel) */
.futon-shell .services-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.futon-shell .service-card{
    padding: 36px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.futon-shell .service-icon-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.futon-shell .service-icon{
    width: 52px;
    height: 52px;
    background: var(--accent-orange);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #FFFFFF;
    box-shadow: var(--shadow-orange);
}

.futon-shell .service-num{
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--border-light);
}

.futon-shell .service-card h3{
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.futon-shell .service-card p{
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.futon-shell .service-list{
    list-style: none;
    margin-bottom: 30px;
    margin-top: auto;
}

.futon-shell .service-list li{
    font-size: 0.9rem;
    color: var(--text-body);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.futon-shell .service-list li i{
    color: var(--accent-orange);
}

.futon-shell .service-link{
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.futon-shell .service-link:hover{
    gap: 12px;
    color: var(--accent-orange-hover);
}

/* Portfolio Showcase Section */
.futon-shell .portfolio-section{
    background: var(--bg-white);
}

.futon-shell .portfolio-filters{
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 44px;
    flex-wrap: wrap;
}

.futon-shell .filter-btn{
    background: var(--bg-body);
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-fast);
}

.futon-shell .filter-btn.active, .futon-shell .filter-btn:hover{
    background: var(--accent-orange);
    color: #FFFFFF;
    border-color: var(--accent-orange);
    box-shadow: var(--shadow-orange);
}

.futon-shell .portfolio-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}

.futon-shell .portfolio-card{
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.futon-shell .portfolio-banner{
    height: 180px;
    padding: 24px;
    display: flex;
    align-items: flex-end;
    position: relative;
    background: linear-gradient(135deg, #1E293B, #0F172A);
    color: #FFFFFF;
}

.futon-shell .banner-samsung{ background: linear-gradient(135deg, #0284C7, #0369A1); }
.futon-shell .banner-goodwe{ background: linear-gradient(135deg, #059669, #047857); }
.futon-shell .banner-cellphones{ background: linear-gradient(135deg, #DC2626, #991B1B); }
.futon-shell .banner-haitrieu{ background: linear-gradient(135deg, #2563EB, #1D4ED8); }
.futon-shell .banner-bni{ background: linear-gradient(135deg, #D97706, #B45309); }
.futon-shell .banner-mwg{ background: linear-gradient(135deg, #EA580C, #C2410C); }

.futon-shell .portfolio-tag-top{
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
}

.futon-shell .portfolio-banner h4{
    font-size: 1.25rem;
    color: #FFFFFF;
}

.futon-shell .portfolio-body{
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.futon-shell .portfolio-cat{
    font-size: 0.8rem;
    color: var(--accent-orange);
    font-weight: 700;
    margin-bottom: 8px;
}

.futon-shell .portfolio-body h3{
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.futon-shell .portfolio-body p{
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.futon-shell .portfolio-meta{
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Strategy Estimator Box (Minara Pastel Card) */
.futon-shell .estimator-card{
    background: linear-gradient(135deg, #FFF7F5 0%, #F5F3FF 100%);
    border: 1px solid #FED7AA;
    border-radius: var(--radius-xl);
    padding: 48px;
}

.futon-shell .estimator-header h2{
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.futon-shell .pill-group{
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.futon-shell .pill-choice{
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.futon-shell .pill-choice.active{
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: #FFFFFF;
    box-shadow: var(--shadow-orange);
}

.futon-shell .result-card{
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    padding: 28px;
    border-radius: var(--radius-lg);
    display: flex;
    gap: 20px;
    align-items: center;
    box-shadow: var(--shadow-md);
}

.futon-shell .result-icon-box{
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--accent-orange);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: var(--shadow-orange);
    flex-shrink: 0;
}

.futon-shell .result-text h4{
    font-size: 1.25rem;
    color: var(--accent-orange);
    margin-bottom: 6px;
}

.futon-shell .result-text p{
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Stats Section (Matching Minara Orange Metrics Bar) */
.futon-shell .stats-section{
    background: var(--bg-white);
    padding: 70px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.futon-shell .stats-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
}

.futon-shell .stat-box{
    padding: 24px;
}

.futon-shell .stat-box .number{
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent-orange);
    line-height: 1;
    margin-bottom: 10px;
    font-variant-numeric: tabular-nums;
}

.futon-shell .stat-box .label{
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Process Section */
.futon-shell .process-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.futon-shell .process-card{
    padding: 32px;
}

.futon-shell .process-num{
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--accent-orange);
    margin-bottom: 12px;
}

.futon-shell .process-card h3{
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.futon-shell .process-card p{
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Contact Section (Minara Orange/Purple Glow) */
.futon-shell .contact-section{
    position: relative;
    overflow: hidden;
}

.futon-shell .contact-grid{
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 48px;
    align-items: center;
}

.futon-shell .contact-card-box{
    padding: 40px;
    border-radius: var(--radius-xl);
}

.futon-shell .info-item{
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.futon-shell .info-icon-box{
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--accent-orange-light);
    color: var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.futon-shell .info-text span{
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
}

.futon-shell .info-text strong{
    font-size: 1.05rem;
    color: var(--text-dark);
}

.futon-shell .form-white-box{
    background: #FFFFFF;
    padding: 36px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
}

.futon-shell .form-white-box h3{
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.futon-shell .form-field{
    margin-bottom: 20px;
}

.futon-shell .form-row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.futon-shell .form-field label{
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.futon-shell .form-field input, .futon-shell .form-field select, .futon-shell .form-field textarea{
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-body);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
}

.futon-shell .form-field input:focus, .futon-shell .form-field select:focus, .futon-shell .form-field textarea:focus{
    border-color: var(--accent-orange);
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(255, 84, 41, 0.15);
}

/* Footer (Minara Soft Purple Pastel Banner) */
.futon-shell .footer{
    padding: 40px 0;
}

.futon-shell .footer-card{
    background: linear-gradient(135deg, #E9D5FF 0%, #FCE7F3 50%, #E0E7FF 100%);
    border-radius: var(--radius-xl);
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.futon-shell .footer-brand .name{
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    color: #1E1B4B;
}

.futon-shell .footer-brand p{
    font-size: 0.9rem;
    color: #4338CA;
    margin-top: 4px;
}

.futon-shell .footer-copy p{
    font-size: 0.85rem;
    color: #475569;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .futon-shell .hero-grid{
        grid-template-columns: 1fr;
    }

    .futon-shell .hero-title{
        font-size: 3rem;
    }

    .futon-shell .contact-grid{
        grid-template-columns: 1fr;
    }

    .futon-shell .footer-card{
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .futon-shell .nav-menu{
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: #FFFFFF;
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        border-bottom: 1px solid var(--border-light);
        box-shadow: var(--shadow-lg);
        transform: translateY(-150%);
        transition: var(--transition-normal);
    }

    .futon-shell .nav-menu.active{
        transform: translateY(0);
    }

    .futon-shell .mobile-toggle{
        display: block;
    }

    .futon-shell .form-row{
        grid-template-columns: 1fr;
    }
}

/* Subpage Banner & General Layouts */
.futon-shell .page-header-banner{
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 60%, #FFF7F5 100%);
    padding: 140px 0 60px;
    border-bottom: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.futon-shell .page-header-banner::before{
    content: "";
    position: absolute;
    top: -20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 84, 41, 0.1) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
}

.futon-shell .breadcrumb{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-weight: 600;
}

.futon-shell .breadcrumb a{
    color: var(--accent-orange);
    text-decoration: none;
}

.futon-shell .page-header-title{
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.futon-shell .page-header-desc{
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 680px;
}

/* Timeline Layout for Experience Page */
.futon-shell .timeline-container{
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.futon-shell .timeline-container::before{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 28px;
    width: 3px;
    background: var(--border-light);
}

.futon-shell .timeline-item{
    position: relative;
    padding-left: 80px;
    margin-bottom: 48px;
}

.futon-shell .timeline-dot{
    position: absolute;
    left: 16px;
    top: 6px;
    width: 26px;
    height: 26px;
    background: var(--accent-orange);
    border-radius: 50%;
    border: 4px solid #FFFFFF;
    box-shadow: var(--shadow-orange);
    z-index: 2;
}

.futon-shell .timeline-card{
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.futon-shell .timeline-card:hover{
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 84, 41, 0.3);
}

.futon-shell .timeline-date{
    display: inline-block;
    background: var(--accent-orange-light);
    color: var(--accent-orange);
    font-size: 0.8rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.futon-shell .timeline-card h3{
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.futon-shell .timeline-company{
    font-size: 0.95rem;
    color: var(--accent-orange);
    font-weight: 700;
    margin-bottom: 16px;
}

.futon-shell .timeline-bullets{
    list-style: none;
    margin-top: 16px;
}

.futon-shell .timeline-bullets li{
    font-size: 0.92rem;
    color: var(--text-body);
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.futon-shell .timeline-bullets li i{
    color: var(--accent-orange);
    margin-top: 4px;
}

/* F.Lab AI Playground Styles */
.futon-shell .flab-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.futon-shell .flab-card{
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.futon-shell .flab-card:hover{
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 84, 41, 0.3);
}

.futon-shell .flab-badge{
    position: absolute;
    top: 16px;
    right: 16px;
    background: #ECFDF5;
    border: 1px solid #10B981;
    color: #059669;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: var(--radius-full);
}

.futon-shell .flab-icon{
    width: 56px;
    height: 56px;
    background: var(--accent-orange-light);
    color: var(--accent-orange);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.futon-shell .flab-card h3{
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.futon-shell .flab-card p{
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.futon-shell .flab-tech-tags{
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.futon-shell .flab-tag{
    font-size: 0.75rem;
    background: var(--bg-body);
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 600;
}

/* Blog Cards */
.futon-shell .blog-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}

.futon-shell .blog-card{
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
}

.futon-shell .blog-card:hover{
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 84, 41, 0.3);
}

.futon-shell .blog-thumb{
    height: 190px;
    background: linear-gradient(135deg, #1E293B, #0F172A);
    padding: 24px;
    display: flex;
    align-items: flex-end;
    color: #FFFFFF;
}

.futon-shell .blog-category{
    font-size: 0.8rem;
    color: var(--accent-orange);
    font-weight: 800;
    margin-bottom: 6px;
}

.futon-shell .blog-body{
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.futon-shell .blog-body h3{
    font-size: 1.25rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.futon-shell .blog-body p{
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.futon-shell .blog-footer{
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* CV Viewer Box */
.futon-shell .cv-container{
    max-width: 900px;
    margin: 0 auto;
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-lg);
}

.futon-shell .cv-header-actions{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 28px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--border-light);
}

.futon-shell .cv-section-title{
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent-orange);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* ===== FUTON v3 WordPress integration layer ===== */
body.futon-site { margin: 0 !important; min-height: 100vh; }
.futon-shell { min-height: 100vh; overflow-x: clip; }
.futon-shell a { text-decoration: none; }
.futon-shell img { max-width: 100%; height: auto; }
.futon-shell .futon-contact-notice { padding: 12px 14px; border-radius: 10px; margin: 0 0 18px; font-size: .9rem; font-weight: 600; }
.futon-shell .futon-contact-notice.success { background: #ECFDF5; color: #047857; border: 1px solid #A7F3D0; }
.futon-shell .futon-contact-notice.error { background: #FEF2F2; color: #B91C1C; border: 1px solid #FECACA; }
.futon-shell .futon-hp { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.futon-shell .nav-link.current-menu-item { color: var(--accent-orange); }
.futon-shell .wp-blog-card-link { color: inherit; display: contents; }
.futon-shell .blog-card .blog-thumb h3 { color: #fff; margin: 0; }
.futon-shell .blog-footer .read-more { color: var(--accent-orange); font-weight: 700; }
.futon-shell .futon-pagination { margin-top: 36px; display: flex; justify-content: center; }
.futon-shell .futon-pagination .nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.futon-shell .futon-pagination .page-numbers { min-width: 38px; height: 38px; padding: 0 12px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; background: #fff; border: 1px solid var(--border-light); color: var(--text-body); font-weight: 700; }
.futon-shell .futon-pagination .page-numbers.current { background: var(--accent-orange); color: #fff; border-color: var(--accent-orange); }
.futon-shell .futon-article-wrap { max-width: 900px; margin: 0 auto; }
.futon-shell .futon-article { background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-xl); padding: clamp(26px, 5vw, 56px); box-shadow: var(--shadow-md); }
.futon-shell .futon-article-meta { display: flex; gap: 14px; flex-wrap: wrap; color: var(--text-muted); font-size: .86rem; margin-bottom: 26px; }
.futon-shell .futon-article-content { color: var(--text-body); font-size: 1rem; line-height: 1.85; }
.futon-shell .futon-article-content > * + * { margin-top: 1.15em; }
.futon-shell .futon-article-content h2 { font-size: 1.8rem; margin-top: 1.8em; }
.futon-shell .futon-article-content h3 { font-size: 1.35rem; margin-top: 1.5em; }
.futon-shell .futon-article-content ul, .futon-shell .futon-article-content ol { padding-left: 1.25rem; }
.futon-shell .futon-article-content a { color: var(--accent-orange); text-decoration: underline; text-underline-offset: 3px; }
.futon-shell .futon-article-content img { border-radius: var(--radius-md); }
.futon-shell .futon-empty { text-align: center; padding: 60px 24px; background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-xl); }
.futon-shell .screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
@media (max-width: 768px) {
  .futon-shell .navbar .btn-orange { display: none; }
  .futon-shell .page-header-title { font-size: clamp(2rem, 10vw, 3rem); }
  .futon-shell .section { padding: 72px 0; }
  .futon-shell .hero-section { padding-top: 118px; }
  .futon-shell .hero-title { font-size: clamp(2.3rem, 10vw, 3rem); }
  .futon-shell .hero-cta-group { align-items: stretch; }
  .futon-shell .hero-cta-group .btn { width: 100%; }
  .futon-shell .hero-stats { gap: 12px; }
  .futon-shell .stat-divider { display: none; }
  .futon-shell .services-grid, .futon-shell .portfolio-grid, .futon-shell .blog-grid, .futon-shell .flab-grid { grid-template-columns: 1fr; }
  .futon-shell .advantage-grid, .futon-shell .process-grid { grid-template-columns: 1fr; }
  .futon-shell .cv-container { padding: 24px; }
}
@media print {
  body.futon-site .navbar, body.futon-site .footer, body.futon-site #wpadminbar { display:none !important; }
  .futon-shell .page-header-banner { padding-top: 20px; }
  .futon-shell .cv-container { box-shadow:none; border:0; padding:0; }
}

/* ===== FUTON v3.2 — Flatsome off-canvas compatibility =====
 * Flatsome prints its mobile sidebar at wp_footer(). Because FUTON intentionally
 * dequeues Flatsome's front-end CSS, the parent's .mfp-hide rule is unavailable.
 * Keep the markup hidden: FUTON uses its own responsive navigation.
 */
body.futon-site #main-menu.mobile-sidebar,
body.futon-site .mobile-sidebar.mfp-hide,
body.futon-site .mfp-hide.mobile-sidebar,
body.futon-site #main-menu.mfp-hide {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* ===== FUTON v3.3 — Editable Header/Footer ===== */
.futon-shell .logo-image{
  display:block;
  width:auto;
  max-width:220px;
  height:44px;
  object-fit:contain;
}
.futon-shell .futon-menu-list{
  display:flex;
  align-items:center;
  gap:32px;
  margin:0;
  padding:0;
  list-style:none;
}
.futon-shell .futon-menu-list > li{ margin:0; padding:0; list-style:none; }
.futon-shell .futon-menu-list .current-menu-item > a,
.futon-shell .futon-menu-list .current_page_item > a,
.futon-shell .futon-menu-list .current-menu-ancestor > a{ color:var(--accent-orange) !important; }
.futon-shell .footer-right{ display:flex; flex-direction:column; align-items:flex-end; gap:12px; }
.futon-shell .footer-socials{ display:flex; align-items:center; justify-content:flex-end; gap:8px; }
.futon-shell .footer-social{
  width:34px; height:34px; border-radius:50%; display:inline-flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,.65); color:#4338CA; text-decoration:none; transition:var(--transition-fast);
}
.futon-shell .footer-social:hover{ transform:translateY(-2px); background:#fff; color:var(--accent-orange); }
@media (max-width:768px){
  .futon-shell .futon-menu-list{ width:100%; flex-direction:column; gap:20px; }
  .futon-shell .futon-menu-list > li{ width:100%; text-align:center; }
  .futon-shell .footer-right{ align-items:center; }
  .futon-shell .footer-socials{ justify-content:center; }
  .futon-shell .logo-image{ max-width:170px; height:38px; }
}

/* ===== FUTON v3.4 CMS ===== */
.futon-shell .futon-card-link{color:inherit;text-decoration:none;display:contents}
.futon-shell .portfolio-banner.has-image{background-size:cover;background-position:center}
.futon-shell .futon-section-cta{display:flex;justify-content:center;margin-top:34px}
.futon-shell .flab-card.has-cover{padding-top:0}
.futon-shell .flab-cover{height:170px;margin:0 -32px 24px;background-size:cover;background-position:center}
.futon-shell .page-header-banner.has-cover{position:relative;background-image:linear-gradient(90deg,rgba(248,250,252,.96),rgba(248,250,252,.78)),var(--futon-page-cover);background-size:cover;background-position:center}
.futon-shell .blog-featured-wrap{margin-bottom:38px}
.futon-shell .blog-grid-featured{grid-template-columns:minmax(0,1fr)}
.futon-shell .blog-card.is-featured .blog-thumb{height:300px}
.futon-shell .blog-thumb.has-image{background-size:cover;background-position:center}
.futon-shell .futon-featured-pill{display:inline-flex;align-items:center;gap:6px;padding:5px 10px;border-radius:999px;background:rgba(255,255,255,.16);backdrop-filter:blur(8px);font-size:.72rem;font-weight:800;color:#fff;margin:0 8px 8px 0}
.futon-shell .futon-entry-cover{width:100%;aspect-ratio:16/7;object-fit:cover;border-radius:var(--radius-xl);margin-bottom:28px}
.futon-shell .futon-entry-meta{display:flex;gap:10px;flex-wrap:wrap;margin:0 0 20px}.futon-shell .futon-entry-meta span{padding:6px 10px;border-radius:999px;background:var(--accent-orange-light);color:var(--accent-orange);font-size:.8rem;font-weight:700}
@media(max-width:700px){.futon-shell .blog-card.is-featured .blog-thumb{height:220px}.futon-shell .flab-cover{height:150px}}

/* ==========================================================================
   FUTON v3.6 — RESPONSIVE SYSTEM
   Breakpoints:
   - Desktop: > 1100px
   - Tablet: 768px–1100px
   - Mobile: <= 767px
   This block intentionally lives at the end of the stylesheet so it can
   correct the minimal responsive rules inherited from the localhost source.
   ========================================================================== */

/* Global responsive safety */
body.futon-site { width: 100%; overflow-x: hidden; }
body.futon-site.admin-bar .futon-shell .navbar { top: 32px; }
.futon-shell *, .futon-shell *::before, .futon-shell *::after { box-sizing: border-box; }
.futon-shell img, .futon-shell svg, .futon-shell video, .futon-shell iframe { max-width: 100%; }
.futon-shell iframe { width: 100%; }
.futon-shell pre { max-width: 100%; overflow-x: auto; white-space: pre; }
.futon-shell .futon-article-content table { display: block; width: 100%; max-width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.futon-shell .hero-content, .futon-shell .hero-visual, .futon-shell .contact-grid > *, .futon-shell .result-text { min-width: 0; }
.futon-shell h1, .futon-shell h2, .futon-shell h3, .futon-shell h4, .futon-shell p, .futon-shell a, .futon-shell strong { overflow-wrap: anywhere; }

/* Mobile navigation overlay; invisible on desktop. */
.futon-shell .futon-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(15, 23, 42, .32);
  border: 0;
  padding: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, visibility .22s ease;
  -webkit-tap-highlight-color: transparent;
}
body.futon-menu-open { overflow: hidden; }

/* ------------------------------ TABLET ---------------------------------- */
@media (max-width: 1100px) {
  .futon-shell .container { max-width: 100%; padding-left: 32px; padding-right: 32px; }

  /* Header becomes a proper hamburger layout before desktop navigation starts colliding. */
  .futon-shell .navbar { padding: 12px 0; }
  .futon-shell .navbar.scrolled { padding: 10px 0; }
  .futon-shell .nav-container { min-height: 52px; }
  .futon-shell .logo-badge { width: 42px; height: 42px; border-radius: 11px; }
  .futon-shell .logo-text .name { font-size: 1.02rem; }
  .futon-shell .logo-text .subtitle { font-size: .58rem; }
  .futon-shell .navbar .nav-actions > .btn-orange { display: none; }
  .futon-shell .mobile-toggle {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1002;
  }
  .futon-shell .mobile-toggle:focus-visible { outline: 3px solid rgba(255,84,41,.24); outline-offset: 2px; }
  .futon-shell .nav-menu {
    position: fixed;
    top: 86px;
    left: 24px;
    right: 24px;
    width: auto;
    max-height: calc(100dvh - 110px);
    overflow-y: auto;
    display: block;
    background: rgba(255,255,255,.98);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    box-shadow: 0 24px 70px rgba(15,23,42,.18);
    padding: 18px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px) scale(.985);
    transform-origin: top center;
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
    z-index: 1001;
  }
  body.admin-bar .futon-shell .nav-menu { top: 118px; max-height: calc(100dvh - 142px); }
  .futon-shell .nav-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
  .futon-shell .futon-menu-list { width: 100%; display: flex; flex-direction: column; align-items: stretch; gap: 6px; }
  .futon-shell .futon-menu-list > li { width: 100%; text-align: left; }
  .futon-shell .futon-menu-list > li > a.nav-link {
    width: 100%;
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 11px 14px;
    border-radius: 12px;
    font-size: 1rem;
  }
  .futon-shell .futon-menu-list > li > a.nav-link:hover,
  .futon-shell .futon-menu-list > .current-menu-item > a.nav-link,
  .futon-shell .futon-menu-list > .current_page_item > a.nav-link { background: var(--accent-orange-light); }
  .futon-shell .futon-nav-overlay { display: block; }
  .futon-shell .futon-nav-overlay.active { opacity: 1; visibility: visible; }

  /* Homepage */
  .futon-shell .hero-section { padding: 126px 0 76px; }
  .futon-shell .hero-section::before { width: 520px; height: 380px; left: 55%; }
  .futon-shell .hero-grid { grid-template-columns: 1fr; gap: 46px; }
  .futon-shell .hero-content { max-width: 760px; }
  .futon-shell .hero-title { font-size: clamp(3rem, 7vw, 4rem); }
  .futon-shell .hero-description { max-width: 720px; }
  .futon-shell .hero-visual { width: min(100%, 520px); justify-self: center; }
  .futon-shell .hero-card { padding: 32px; }
  .futon-shell .hero-stats { max-width: 660px; }

  .futon-shell .section { padding: 88px 0; }
  .futon-shell .section-header { margin-bottom: 46px; }
  .futon-shell .section-title { font-size: clamp(2.25rem, 5.2vw, 3rem); }
  .futon-shell .section-desc { font-size: 1rem; }
  .futon-shell .philosophy-section { padding: 64px 0; }
  .futon-shell .philosophy-card { padding: 42px; }
  .futon-shell .philosophy-quote { font-size: 1.04rem; line-height: 1.85; }

  .futon-shell .advantage-grid,
  .futon-shell .services-grid,
  .futon-shell .portfolio-grid,
  .futon-shell .process-grid,
  .futon-shell .blog-grid,
  .futon-shell .flab-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
  .futon-shell .advantage-card, .futon-shell .service-card { padding: 30px; }
  .futon-shell .portfolio-banner { height: 165px; }
  .futon-shell .portfolio-body { padding: 24px; }
  .futon-shell .portfolio-meta { gap: 12px; flex-wrap: wrap; }

  .futon-shell .stats-section { padding: 58px 0; }
  .futon-shell .stats-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
  .futon-shell .stat-box { padding: 20px 12px; }
  .futon-shell .stat-box .number { font-size: clamp(2.5rem, 6vw, 3.35rem); }
  .futon-shell .stat-box .label { font-size: .9rem; }

  .futon-shell .estimator-card { padding: 40px; }
  .futon-shell .estimator-header h2 { font-size: 2rem; }
  .futon-shell .pill-choice { flex: 1 1 210px; }

  .futon-shell .contact-grid { grid-template-columns: 1fr; gap: 38px; }
  .futon-shell .contact-card-box { padding: 32px; }
  .futon-shell .form-white-box { padding: 32px; }

  /* Subpages / Blog / F.Lab / Projects */
  .futon-shell .page-header-banner { padding: 126px 0 56px; }
  .futon-shell .page-header-title { font-size: clamp(2.45rem, 6vw, 3.2rem); }
  .futon-shell .page-header-banner::before { width: 330px; height: 330px; right: -4%; }
  .futon-shell .blog-card.is-featured .blog-thumb { height: 270px; }
  .futon-shell .futon-article-wrap { max-width: 820px; }
  .futon-shell .cv-container { padding: 36px; }

  .futon-shell .footer { padding: 32px 0; }
  .futon-shell .footer-card { padding: 32px; flex-direction: column; align-items: flex-start; gap: 18px; text-align: left; }
  .futon-shell .footer-right { width: 100%; align-items: flex-start; }
  .futon-shell .footer-socials { justify-content: flex-start; }
}

/* WordPress changes admin-bar height at this breakpoint. */
@media (max-width: 782px) {
  body.futon-site.admin-bar .futon-shell .navbar { top: 46px; }
  body.futon-site.admin-bar .futon-shell .nav-menu { top: 132px; max-height: calc(100dvh - 154px); }
}

/* ------------------------------ MOBILE ---------------------------------- */
@media (max-width: 767px) {
  .futon-shell .container { padding-left: 18px; padding-right: 18px; }
  .futon-shell .navbar { padding: 9px 0; }
  .futon-shell .navbar.scrolled { padding: 8px 0; }
  .futon-shell .nav-container { min-height: 50px; }
  .futon-shell .logo { gap: 9px; min-width: 0; }
  .futon-shell .logo-badge { width: 38px; height: 38px; border-radius: 10px; font-size: 1rem; flex: 0 0 auto; }
  .futon-shell .logo-text .name { font-size: .95rem; }
  .futon-shell .logo-text .subtitle { font-size: .52rem; letter-spacing: .7px; }
  .futon-shell .logo-image { max-width: 145px; height: 36px; }
  .futon-shell .mobile-toggle { width: 40px; height: 40px; border-radius: 11px; font-size: 1.25rem; }
  .futon-shell .nav-menu { top: 72px; left: 12px; right: 12px; max-height: calc(100dvh - 88px); padding: 12px; border-radius: 18px; }
  body.admin-bar .futon-shell .nav-menu { top: 118px; max-height: calc(100dvh - 134px); }
  .futon-shell .futon-menu-list > li > a.nav-link { min-height: 44px; padding: 10px 12px; font-size: .95rem; }

  .futon-shell .hero-section { padding: 102px 0 58px; }
  .futon-shell .hero-section::before { width: 360px; height: 300px; top: 0; left: 62%; filter: blur(48px); }
  .futon-shell .hero-grid { gap: 34px; }
  .futon-shell .pill-badge { max-width: 100%; padding: 6px 12px; margin-bottom: 18px; font-size: .75rem; line-height: 1.35; }
  .futon-shell .pill-badge .dot { flex: 0 0 8px; }
  .futon-shell .hero-title { font-size: clamp(2.35rem, 12vw, 3.05rem); line-height: 1.03; letter-spacing: -1.25px; margin-bottom: 20px; }
  .futon-shell .hero-title br { display: none; }
  .futon-shell .hero-title .gradient-orange { display: block; margin-top: 5px; }
  .futon-shell .hero-description { font-size: .98rem; line-height: 1.75; margin-bottom: 28px; }
  .futon-shell .hero-cta-group { flex-direction: column; gap: 11px; margin-bottom: 34px; }
  .futon-shell .hero-cta-group .btn { width: 100%; min-height: 50px; padding: 13px 18px; font-size: .95rem; }
  .futon-shell .hero-stats { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 8px; padding-top: 22px; }
  .futon-shell .stat-divider { display: none; }
  .futon-shell .stat-item { min-width: 0; text-align: center; align-items: center; }
  .futon-shell .stat-number { font-size: clamp(1.7rem, 8vw, 2.15rem); }
  .futon-shell .stat-label { font-size: .66rem; line-height: 1.35; }
  .futon-shell .hero-visual { width: 100%; }
  .futon-shell .hero-card { padding: 28px 20px 24px; border-radius: 22px; }
  .futon-shell .avatar-wrapper { width: 116px; height: 116px; margin-bottom: 24px; }
  .futon-shell .status-pill { font-size: .68rem; padding: 4px 10px; }
  .futon-shell .hero-card h3 { font-size: 1.4rem; }
  .futon-shell .hero-card .role { font-size: .82rem; }
  .futon-shell .skill-pills { gap: 6px; }
  .futon-shell .skill-pill { font-size: .68rem; padding: 5px 8px; }

  .futon-shell .brand-trust-strip { padding: 11px 0; }
  .futon-shell .marquee-content { gap: 34px; padding-right: 34px; }
  .futon-shell .brand-logo-item { min-width: 92px; height: 32px; }
  .futon-shell .brand-logo-item img { max-width: 122px; max-height: 25px; }
  .futon-shell .brand-logo-fallback { font-size: .72rem; letter-spacing: 1px; }
  .futon-shell .marquee-track { animation-duration: 32s; }

  .futon-shell .section { padding: 64px 0; }
  .futon-shell .section-header { margin-bottom: 34px; }
  .futon-shell .section-subtitle { font-size: .7rem; letter-spacing: 1.6px; margin-bottom: 9px; }
  .futon-shell .section-title { font-size: clamp(1.9rem, 9vw, 2.45rem); line-height: 1.13; margin-bottom: 13px; }
  .futon-shell .section-desc { font-size: .9rem; line-height: 1.65; }
  .futon-shell .philosophy-section { padding: 46px 0; }
  .futon-shell .philosophy-card { padding: 30px 22px 26px; border-radius: 20px; }
  .futon-shell .quote-icon { font-size: 2.25rem; margin-bottom: 12px; }
  .futon-shell .philosophy-quote { font-size: .94rem; line-height: 1.78; }
  .futon-shell .philosophy-quote p + p { margin-top: 18px; }
  .futon-shell .philosophy-author { margin-top: 22px; padding-top: 18px; }

  .futon-shell .advantage-grid,
  .futon-shell .services-grid,
  .futon-shell .portfolio-grid,
  .futon-shell .process-grid,
  .futon-shell .blog-grid,
  .futon-shell .flab-grid { grid-template-columns: 1fr; gap: 16px; }
  .futon-shell .advantage-card, .futon-shell .service-card, .futon-shell .process-card { padding: 24px; }
  .futon-shell .icon-box { width: 52px; height: 52px; border-radius: 15px; margin-bottom: 18px; }
  .futon-shell .advantage-card h3, .futon-shell .service-card h3 { font-size: 1.16rem; }
  .futon-shell .service-icon-wrapper { margin-bottom: 18px; }
  .futon-shell .service-icon { width: 48px; height: 48px; border-radius: 14px; }
  .futon-shell .service-num { font-size: 1.65rem; }
  .futon-shell .service-card p { margin-bottom: 18px; }
  .futon-shell .service-list { margin-bottom: 22px; }
  .futon-shell .service-list li { align-items: flex-start; font-size: .86rem; }

  /* Filters become a deliberate horizontal swipe row instead of wrapping into a tall block. */
  .futon-shell .portfolio-filters { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; gap: 8px; margin: 0 -18px 28px; padding: 2px 18px 12px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .futon-shell .portfolio-filters::-webkit-scrollbar { display: none; }
  .futon-shell .filter-btn { flex: 0 0 auto; padding: 9px 16px; font-size: .78rem; }
  .futon-shell .portfolio-banner { height: 150px; padding: 20px; }
  .futon-shell .portfolio-tag-top { top: 13px; left: 13px; font-size: .67rem; }
  .futon-shell .portfolio-banner h4 { font-size: 1.08rem; }
  .futon-shell .portfolio-body { padding: 22px; }
  .futon-shell .portfolio-meta { display: grid; grid-template-columns: 1fr; gap: 7px; }
  .futon-shell .futon-section-cta { margin-top: 24px; }
  .futon-shell .futon-section-cta .btn { width: 100%; }

  .futon-shell .stats-section { padding: 44px 0; }
  .futon-shell .stats-grid { grid-template-columns: 1fr; gap: 4px; }
  .futon-shell .stat-box { padding: 18px 12px; }
  .futon-shell .stat-box + .stat-box { border-top: 1px solid var(--border-light); }
  .futon-shell .stat-box .number { font-size: 2.8rem; }
  .futon-shell .stat-box .label { max-width: 280px; margin: 0 auto; font-size: .88rem; line-height: 1.45; }

  .futon-shell .estimator-card { padding: 28px 20px; border-radius: 20px; }
  .futon-shell .estimator-header h2 { font-size: 1.65rem; line-height: 1.25; }
  .futon-shell .estimator-header p { font-size: .9rem; }
  .futon-shell .pill-group { display: grid; grid-template-columns: 1fr; gap: 9px; }
  .futon-shell .pill-choice { width: 100%; min-height: 44px; text-align: left; padding: 11px 14px; font-size: .83rem; }
  .futon-shell .result-card { flex-direction: column; align-items: flex-start; padding: 22px; gap: 15px; }
  .futon-shell .result-icon-box { width: 52px; height: 52px; }
  .futon-shell .result-text h4 { font-size: 1.08rem; }
  .futon-shell .result-text p { font-size: .86rem; }

  .futon-shell .process-num { font-size: 2.35rem; }
  .futon-shell .contact-grid { gap: 26px; }
  .futon-shell .contact-card-box { padding: 0; }
  .futon-shell .info-item { gap: 12px; margin-bottom: 18px; align-items: flex-start; }
  .futon-shell .info-icon-box { width: 44px; height: 44px; flex: 0 0 44px; }
  .futon-shell .info-text { min-width: 0; }
  .futon-shell .info-text strong { font-size: .94rem; overflow-wrap: anywhere; }
  .futon-shell .form-white-box { padding: 24px 18px; border-radius: 20px; }
  .futon-shell .form-white-box h3 { font-size: 1.3rem; margin-bottom: 20px; }
  .futon-shell .form-row { grid-template-columns: 1fr; gap: 0; }
  .futon-shell .form-field { margin-bottom: 16px; }
  .futon-shell .form-field input, .futon-shell .form-field select, .futon-shell .form-field textarea { font-size: 16px; min-height: 46px; padding: 11px 13px; } /* 16px prevents iOS zoom */

  /* Subpages */
  .futon-shell .page-header-banner { padding: 102px 0 42px; }
  .futon-shell .page-header-banner::before { width: 250px; height: 250px; top: -10%; right: -25%; }
  .futon-shell .breadcrumb { font-size: .75rem; flex-wrap: wrap; }
  .futon-shell .page-header-title { font-size: clamp(2rem, 10vw, 2.55rem); line-height: 1.1; }
  .futon-shell .page-header-desc { font-size: .92rem; line-height: 1.65; }
  .futon-shell .timeline-container { padding: 18px 0; }
  .futon-shell .timeline-container::before { left: 12px; }
  .futon-shell .timeline-item { padding-left: 42px; margin-bottom: 28px; }
  .futon-shell .timeline-dot { left: 0; width: 26px; height: 26px; }
  .futon-shell .timeline-card { padding: 22px; }
  .futon-shell .timeline-card h3 { font-size: 1.15rem; }

  .futon-shell .blog-featured-wrap { margin-bottom: 24px; }
  .futon-shell .blog-card.is-featured .blog-thumb { height: 210px; }
  .futon-shell .blog-thumb { height: 165px; padding: 18px; }
  .futon-shell .blog-body { padding: 22px; }
  .futon-shell .blog-body h3 { font-size: 1.12rem; }
  .futon-shell .blog-footer { gap: 10px; flex-wrap: wrap; }
  .futon-shell .flab-card { padding: 24px; }
  .futon-shell .flab-cover { height: 150px; margin: 0 -24px 20px; }

  .futon-shell .futon-entry-cover { aspect-ratio: 16/9; border-radius: 18px; margin-bottom: 20px; }
  .futon-shell .futon-article { padding: 24px 18px; border-radius: 18px; }
  .futon-shell .futon-article-content { font-size: .96rem; line-height: 1.78; }
  .futon-shell .futon-article-content h2 { font-size: 1.5rem; }
  .futon-shell .futon-article-content h3 { font-size: 1.2rem; }
  .futon-shell .futon-article-meta { gap: 8px 12px; font-size: .78rem; }
  .futon-shell .cv-container { padding: 22px 18px; border-radius: 18px; }
  .futon-shell .cv-header-actions { flex-direction: column; align-items: stretch; gap: 14px; }
  .futon-shell .cv-header-actions .btn { width: 100%; }

  /* Footer */
  .futon-shell .footer { padding: 22px 0 26px; }
  .futon-shell .footer-card { padding: 26px 20px; border-radius: 20px; align-items: flex-start; text-align: left; gap: 18px; }
  .futon-shell .footer-brand .name { font-size: 1.05rem; }
  .futon-shell .footer-brand p { font-size: .78rem; line-height: 1.55; }
  .futon-shell .footer-right { align-items: flex-start; gap: 10px; }
  .futon-shell .footer-socials { justify-content: flex-start; }
  .futon-shell .footer-copy p { font-size: .75rem; }
}

/* Narrow phones */
@media (max-width: 420px) {
  .futon-shell .container { padding-left: 15px; padding-right: 15px; }
  .futon-shell .logo-text .subtitle { max-width: 110px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .futon-shell .hero-title { font-size: clamp(2.15rem, 12.4vw, 2.7rem); }
  .futon-shell .hero-stats { gap: 5px; }
  .futon-shell .stat-label { font-size: .61rem; }
  .futon-shell .section-title { font-size: clamp(1.78rem, 9.5vw, 2.2rem); }
  .futon-shell .philosophy-card { padding-left: 18px; padding-right: 18px; }
  .futon-shell .advantage-card, .futon-shell .service-card, .futon-shell .process-card { padding: 21px; }
  .futon-shell .portfolio-filters { margin-left: -15px; margin-right: -15px; padding-left: 15px; padding-right: 15px; }
}

/* Touch devices should not depend on hover to communicate state. */
@media (hover: none) and (pointer: coarse) {
  .futon-shell .card-white:hover,
  .futon-shell .hero-card:hover,
  .futon-shell .flab-card:hover,
  .futon-shell .blog-card:hover { transform: none; }
  .futon-shell .btn-orange:hover { transform: none; }
}

/* ========================================================================== 
   FUTON v3.7 — ABOUT PAGE RESPONSIVE REWORK
   The About page previously carried desktop-only inline grid/flex styles.
   These dedicated classes keep the original visual language while making
   the page intentional on desktop, tablet and mobile.
   ========================================================================== */
.futon-shell .futon-about-page .about-intro-grid{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(340px,.92fr);
  gap:56px;
  align-items:start;
}
.futon-shell .futon-about-page .about-story-paragraph{
  margin:0 0 20px;
  line-height:1.82;
  color:var(--text-body);
}
.futon-shell .futon-about-page .about-story-paragraph-last{margin-bottom:28px}
.futon-shell .futon-about-page .about-actions{display:flex;gap:14px;flex-wrap:wrap}
.futon-shell .futon-about-page .about-skills-card,
.futon-shell .futon-about-page .about-foundation-card{padding:36px}
.futon-shell .futon-about-page .about-card-title{
  font-size:1.35rem;
  line-height:1.3;
  color:var(--text-dark);
  margin:0 0 24px;
}
.futon-shell .futon-about-page .about-skills-list{display:flex;flex-direction:column;gap:18px}
.futon-shell .futon-about-page .about-skill-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:14px;
  font-weight:700;
  margin-bottom:7px;
  line-height:1.4;
}
.futon-shell .futon-about-page .about-skill-head > span:first-child{min-width:0}
.futon-shell .futon-about-page .about-skill-head .text-orange{flex:0 0 auto}
.futon-shell .futon-about-page .about-skill-track{
  height:8px;
  background:var(--bg-body);
  border-radius:999px;
  overflow:hidden;
}
.futon-shell .futon-about-page .about-foundation-section{padding-top:0}
.futon-shell .futon-about-page .about-foundation-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:32px;
  align-items:stretch;
}
.futon-shell .futon-about-page .about-foundation-card{height:100%}
.futon-shell .futon-about-page .about-education-item-separated{
  margin-bottom:20px;
  padding-bottom:20px;
  border-bottom:1px solid var(--border-light);
}
.futon-shell .futon-about-page .about-education-school{display:block;font-size:1.05rem;line-height:1.45}
.futon-shell .futon-about-page .about-education-date{display:block;margin-top:4px;font-size:.85rem;color:var(--text-muted)}
.futon-shell .futon-about-page .about-education-major{color:var(--accent-orange);font-weight:700;font-size:.9rem;margin:5px 0 0}
.futon-shell .futon-about-page .about-tool-pills{display:flex;flex-wrap:wrap;gap:10px}
.futon-shell .futon-about-page .about-mini-stats{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;margin-top:24px}
.futon-shell .futon-about-page .about-mini-stat{text-align:center;padding:18px 14px;border-radius:var(--radius-md)}
.futon-shell .futon-about-page .about-mini-stat-orange{background:var(--accent-orange-light)}
.futon-shell .futon-about-page .about-mini-stat-blue{background:var(--accent-blue-light)}
.futon-shell .futon-about-page .about-mini-stat-number{font-weight:900;font-size:1.55rem;line-height:1.15}
.futon-shell .futon-about-page .about-mini-stat-orange .about-mini-stat-number{color:var(--accent-orange)}
.futon-shell .futon-about-page .about-mini-stat-blue .about-mini-stat-number{color:var(--accent-blue)}
.futon-shell .futon-about-page .about-mini-stat-label{margin-top:5px;font-size:.8rem;font-weight:700;line-height:1.35;color:var(--text-secondary)}
.futon-shell .futon-about-page .about-experience-section{
  background:var(--bg-white);
  border-top:1px solid var(--border-light);
  border-bottom:1px solid var(--border-light);
}
.futon-shell .futon-about-page .about-cv-section{padding:44px 0 72px}
.futon-shell .futon-about-page .about-cv-card{
  width:min(100%,640px);
  margin:0 auto;
  padding:48px;
  text-align:center;
}
.futon-shell .futon-about-page .about-cv-icon{font-size:2.5rem;margin-bottom:16px}
.futon-shell .futon-about-page .about-cv-card h3{margin:0 0 8px;font-size:1.45rem}
.futon-shell .futon-about-page .about-cv-card p{color:var(--text-secondary);margin:0 0 24px;line-height:1.65}
.futon-shell .futon-about-page .about-cv-actions{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}

@media (max-width:1100px){
  .futon-shell .futon-about-page .about-intro-grid{grid-template-columns:1fr;gap:34px}
  .futon-shell .futon-about-page .about-skills-card{width:min(100%,760px)}
  .futon-shell .futon-about-page .about-foundation-grid{gap:24px}
  .futon-shell .futon-about-page .about-foundation-card{padding:30px}
}
@media (max-width:860px){
  .futon-shell .futon-about-page .about-foundation-grid{grid-template-columns:1fr}
}
@media (max-width:767px){
  .futon-shell .futon-about-page .about-intro-section{padding-top:54px}
  .futon-shell .futon-about-page .about-intro-grid{gap:28px}
  .futon-shell .futon-about-page .about-story-paragraph{font-size:.95rem;line-height:1.76;margin-bottom:16px}
  .futon-shell .futon-about-page .about-story-paragraph-last{margin-bottom:22px}
  .futon-shell .futon-about-page .about-actions{display:grid;grid-template-columns:1fr;gap:10px}
  .futon-shell .futon-about-page .about-actions .btn{width:100%}
  .futon-shell .futon-about-page .about-skills-card,
  .futon-shell .futon-about-page .about-foundation-card{padding:24px 20px;border-radius:18px}
  .futon-shell .futon-about-page .about-card-title{font-size:1.2rem;margin-bottom:19px}
  .futon-shell .futon-about-page .about-skills-list{gap:16px}
  .futon-shell .futon-about-page .about-skill-head{font-size:.86rem;gap:10px}
  .futon-shell .futon-about-page .about-skill-track{height:7px}
  .futon-shell .futon-about-page .about-foundation-section{padding-top:0}
  .futon-shell .futon-about-page .about-foundation-grid{gap:16px}
  .futon-shell .futon-about-page .about-tool-pills{gap:7px}
  .futon-shell .futon-about-page .about-tool-pills .skill-pill{font-size:.7rem;padding:6px 9px}
  .futon-shell .futon-about-page .about-mini-stats{gap:8px;margin-top:20px}
  .futon-shell .futon-about-page .about-mini-stat{padding:15px 9px}
  .futon-shell .futon-about-page .about-mini-stat-number{font-size:1.35rem}
  .futon-shell .futon-about-page .about-mini-stat-label{font-size:.7rem}
  .futon-shell .futon-about-page .timeline-card p{font-size:.9rem;line-height:1.68}
  .futon-shell .futon-about-page .timeline-bullets li{font-size:.86rem;line-height:1.6}
  .futon-shell .futon-about-page .timeline-company{font-size:.84rem;line-height:1.45}
  .futon-shell .futon-about-page .about-cv-section{padding:24px 0 56px}
  .futon-shell .futon-about-page .about-cv-card{padding:30px 20px;border-radius:20px}
  .futon-shell .futon-about-page .about-cv-actions{display:grid;grid-template-columns:1fr;gap:10px}
  .futon-shell .futon-about-page .about-cv-actions .btn{width:100%}
}
@media (max-width:420px){
  .futon-shell .futon-about-page .about-mini-stats{grid-template-columns:1fr}
  .futon-shell .futon-about-page .about-skill-head{font-size:.82rem}
}


/* ==========================================================================
   FUTON v3.8 — EXPERIENCE CMS + TIMELINE REWORK
   Keeps experience content readable at every width and removes the old
   word-breaking behaviour that split brand names into tiny columns.
   ========================================================================== */
.futon-shell .futon-experience-timeline{
  max-width:1040px;
  padding:24px 0 8px;
}
.futon-shell .futon-experience-timeline::before{
  left:25px;
  width:2px;
  background:linear-gradient(180deg,rgba(255,84,41,.45),rgba(255,84,41,.08));
}
.futon-shell .futon-experience-item{
  padding-left:72px;
  margin-bottom:32px;
}
.futon-shell .futon-experience-item:last-child{margin-bottom:0}
.futon-shell .futon-experience-item .timeline-dot{
  left:14px;
  top:26px;
  width:24px;
  height:24px;
  border:5px solid #fff;
}
.futon-shell .futon-experience-card{
  padding:30px 34px 32px;
  border-radius:24px;
  box-shadow:0 12px 32px rgba(15,23,42,.06);
}
.futon-shell .futon-experience-card:hover{
  transform:translateY(-2px);
}
.futon-shell .futon-experience-card .timeline-date{
  margin:0 0 12px;
  font-size:.76rem;
  letter-spacing:.01em;
}
.futon-shell .futon-experience-card h3{
  margin:0 0 5px;
  font-size:clamp(1.3rem,2vw,1.55rem);
  line-height:1.25;
  letter-spacing:-.02em;
}
.futon-shell .futon-experience-card .timeline-company{
  margin:0 0 18px;
  font-size:.96rem;
  line-height:1.5;
}
.futon-shell .futon-experience-summary{
  margin:0;
  max-width:900px;
  color:var(--text-secondary);
  font-size:.98rem;
  line-height:1.72;
}
.futon-shell .timeline-responsibilities{
  margin-top:20px;
}
.futon-shell .timeline-responsibilities > :first-child{margin-top:0}
.futon-shell .timeline-responsibilities > :last-child{margin-bottom:0}
.futon-shell .timeline-responsibilities ul{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:11px;
}
.futon-shell .timeline-responsibilities li{
  position:relative;
  display:block !important;
  margin:0 !important;
  padding:0 0 0 28px !important;
  min-width:0;
  color:var(--text-body);
  font-size:.93rem;
  line-height:1.66;
  word-break:normal !important;
  overflow-wrap:break-word !important;
  white-space:normal;
}
.futon-shell .timeline-responsibilities li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:.22em;
  display:grid;
  place-items:center;
  width:17px;
  height:17px;
  border-radius:50%;
  background:var(--accent-orange);
  color:#fff;
  font-size:10px;
  font-weight:900;
  line-height:1;
}
.futon-shell .timeline-responsibilities li strong,
.futon-shell .futon-experience-card strong{
  display:inline !important;
  max-width:none !important;
  word-break:normal !important;
  overflow-wrap:normal !important;
  white-space:normal !important;
}
.futon-shell .futon-experience-page-section{
  background:var(--bg-body);
}

/* Tablet keeps the timeline, but gives the card nearly the full canvas. */
@media (max-width:1024px){
  .futon-shell .futon-experience-timeline{max-width:860px}
  .futon-shell .futon-experience-item{padding-left:58px;margin-bottom:26px}
  .futon-shell .futon-experience-timeline::before{left:19px}
  .futon-shell .futon-experience-item .timeline-dot{left:8px;top:24px}
  .futon-shell .futon-experience-card{padding:26px 28px}
}

/* Mobile intentionally drops the decorative rail. The card gets the full width;
   the date badge is enough to communicate chronology without sacrificing content. */
@media (max-width:767px){
  .futon-shell .futon-experience-timeline{
    max-width:none;
    padding:8px 0 0;
  }
  .futon-shell .futon-experience-timeline::before,
  .futon-shell .futon-experience-item .timeline-dot{
    display:none;
  }
  .futon-shell .futon-experience-item{
    padding-left:0 !important;
    margin-bottom:16px;
  }
  .futon-shell .futon-experience-card{
    width:100%;
    padding:22px 19px 23px;
    border-radius:18px;
    border-left:4px solid var(--accent-orange);
    box-shadow:0 8px 22px rgba(15,23,42,.055);
  }
  .futon-shell .futon-experience-card:hover{transform:none}
  .futon-shell .futon-experience-card .timeline-date{
    font-size:.68rem;
    padding:5px 9px;
    margin-bottom:11px;
  }
  .futon-shell .futon-experience-card h3{
    font-size:1.16rem;
    line-height:1.3;
  }
  .futon-shell .futon-experience-card .timeline-company{
    font-size:.82rem !important;
    line-height:1.5 !important;
    margin-bottom:14px;
  }
  .futon-shell .futon-experience-summary{
    font-size:.9rem !important;
    line-height:1.67 !important;
  }
  .futon-shell .timeline-responsibilities{
    margin-top:17px;
  }
  .futon-shell .timeline-responsibilities ul{
    gap:10px;
  }
  .futon-shell .timeline-responsibilities li{
    padding-left:25px !important;
    font-size:.86rem !important;
    line-height:1.62 !important;
  }
  .futon-shell .timeline-responsibilities li::before{
    width:16px;
    height:16px;
    font-size:9px;
    top:.2em;
  }
}

/* Do not break words inside bold text globally on portfolio content. */
.futon-shell strong{
  word-break:normal;
  overflow-wrap:normal;
}
