   /* ------------------- */
        /* --- CSS RESET & VARIABLES --- */
        /* ------------------- */
        :root {
            --apple-black: #1d1d1f;
            --apple-white: #f5f5f7;
            --apple-light-gray: #f5f5f7;
            --apple-gray: #6e6e73;
            --apple-light-gray-text: #86868b;
            --apple-blue: #0071e3;
            --border-color: #d2d2d7;
            --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-family);
            background-color: #fff;
            color: var(--apple-black);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        a {
            color: var(--apple-blue);
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
        }

        .container {
            max-width: 980px;
            margin: 0 auto;
            padding: 0 22px;
        }

        /* ------------------- */
        /* --- HEADER --- */
        /* ------------------- */
        .global-header {
            background-color: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            position: sticky;
            top: 0;
            z-index: 10;
            height: 48px;
            font-size: 12px;
            border-bottom: 1px solid var(--border-color);
        }

        .nav-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
        }

        .nav-list-left, .nav-list-right {
            display: flex;
            align-items: center;
            list-style: none;
            gap: 18px;
        }

        .nav-list-left li a, .nav-list-right li a, .nav-list-right li button {
            color: var(--apple-black);
            opacity: 0.9;
            transition: opacity 0.3s;
            display: flex;
            align-items: center;
            height: 48px;
        }
        
        .nav-list-left li a:hover, .nav-list-right li a:hover, .nav-list-right li button:hover {
            opacity: 1;
            text-decoration: none;
        }
        
        .apple-logo-small {
            filter: invert(0.1); /* make user's icons look right */
        }
        
        .nav-list-right .icon svg {
            width: 15px;
            height: 20px;
        }

        #hamburger-btn {
            background: none;
            border: none;
            cursor: pointer;
            display: none; /* Hidden on desktop */
            padding: 0;
        }
        
        .newsroom-nav {
            font-size: 21px;
            font-weight: 600;
            letter-spacing: .011em;
            cursor: pointer;
            display: flex;
            align-items: center;
        }
        
        .newsroom-nav .arrow-down svg {
            width: 12px;
            height: 12px;
            margin-left: 6px;
            opacity: 0.7;
        }

        /* ------------------- */
        /* --- ANIMATIONS --- */
        /* ------------------- */
        @keyframes hero-zoom-in {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ------------------- */
        /* --- MOBILE NAV OVERLAY --- */
        /* ------------------- */
        .mobile-nav-overlay {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: var(--apple-black); z-index: 20; padding: 20px 45px; transform: translateY(-100%); transition: transform 0.4s cubic-bezier(0.65, 0.05, 0.36, 1); overflow-y: auto;
        }
        .mobile-nav-overlay.is-active { transform: translateY(0); }
        .mobile-nav-header { display: flex; justify-content: flex-end; margin-bottom: 20px; }
        #close-nav-btn { background: none; border: none; cursor: pointer; }
        #close-nav-btn svg { width: 18px; height: 18px; }
        .mobile-nav-links ul { list-style: none; }
        .mobile-nav-links li a { color: var(--apple-white); font-size: 28px; font-weight: 600; line-height: 1.5; display: block; opacity: 0.8; transition: opacity 0.3s; }
        .mobile-nav-links li a:hover { opacity: 1; text-decoration: none; }

        /* ------------------- */
        /* --- MAIN CONTENT & HERO --- */
        /* ------------------- */
        .page-hero {
            text-align: center;
            margin: 60px auto;
            position: relative;
        }

        .hero-image-container {
            border-radius: 18px;
            overflow: hidden;
            background-color: #f5f5f7;
            transform: scale(0.95);
            opacity: 0;
            animation: hero-zoom-in 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
            animation-delay: 0.1s;
        }
        
        .hero-image-container img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .page-hero h1 {
            font-size: 80px;
            font-weight: 700;
            letter-spacing: -0.015em;
            margin: 20px 0 10px;
            opacity: 0;
            animation: fadeInUp 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
            animation-delay: 0.4s;
            line-height: 1.05;
        }

        .page-hero .sub-headline {
            font-size: 28px;
            line-height: 1.3;
            color: var(--apple-gray);
            max-width: 580px;
            margin: 0 auto;
            opacity: 0;
            animation: fadeInUp 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
            animation-delay: 0.6s;
        }

        /* ------------------- */
        /* --- FEATURE SECTIONS --- */
        /* ------------------- */
        .text-center {
            text-align: center;
        }

        .feature-section {
            padding: 80px 22px;
            max-width: 980px;
            margin: 0 auto;
        }

        .feature-section h2 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .feature-section p {
            font-size: 21px;
            line-height: 1.4;
            color: var(--apple-gray);
            max-width: 680px;
            margin: 0 auto 50px auto;
        }

        .feature-section figure {
            margin: 0 auto;
        }

        .feature-section figure img {
            width: 100%;
            height: auto;
            border-radius: 18px;
        }


        /* ------------------- */
        /* --- FOOTER --- */
        /* ------------------- */
        footer {
            background-color: var(--apple-light-gray); padding: 20px 0; font-size: 12px; color: var(--apple-gray); margin-top: 80px;
        }
        .footer-breadcrumbs{padding-bottom:20px;border-bottom:1px solid var(--border-color);display:flex;align-items:center;gap:10px}.footer-breadcrumbs .apple-logo-small svg{width:15px;height:15px;opacity:.8}.footer-breadcrumbs .separator{color:var(--border-color)}.footer-links details{border-bottom:1px solid var(--border-color)}.footer-links summary{padding:12px 0;font-weight:400;font-size:12px;color:var(--apple-black);cursor:pointer;list-style:none;position:relative}.footer-links summary::-webkit-details-marker{display:none}.footer-links summary::after{content:'+';font-size:18px;font-weight:300;position:absolute;right:10px;top:50%;transform:translateY(-50%);transition:transform .2s}.footer-links details[open] summary::after{transform:translateY(-50%) rotate(45deg)}.footer-links ul{list-style:none;padding-bottom:16px}.footer-links li a{display:block;padding:6px 0;color:var(--apple-gray)}.footer-shop-info{padding:20px 0;border-bottom:1px solid var(--border-color)}.footer-bottom{padding-top:15px}.footer-legal{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap}.footer-legal-links{display:flex;gap:20px;list-style:none;flex-wrap:wrap;margin-top:5px}.footer-legal-links li{padding-right:10px;border-right:1px solid var(--border-color)}.footer-legal-links li:last-child{border-right:none}.footer-legal-links a{color:var(--apple-gray)}.footer-locale{margin-top:10px;display:flex;justify-content:space-between;align-items:center}.copyright{margin-right:30px}.locale-links a:last-child{border-left:1px solid var(--border-color);padding-left:10px;margin-left:5px}

        /* ------------------- */
        /* --- RESPONSIVE MEDIA QUERIES --- */
        /* ------------------- */
        @media (max-width: 833px) {
            .global-header { height: 44px; }
            .nav-list-left, .nav-list-right { height: 44px; }
            .nav-list-left li:not(:first-child), .nav-list-right li:not(:last-child) { display: none; }
            #hamburger-btn { display: block; }
            .newsroom-nav { position: absolute; left: 50%; transform: translateX(-50%); }
            .footer-legal { flex-direction: column; align-items: flex-start; gap: 10px; }
            .page-hero h1 { font-size: 32px; }
            .article-header h2 { font-size: 36px; }
            .article-header .sub-headline { font-size: 21px; }
            .article-body p { font-size: 17px; }
        }
        @media (min-width: 834px) {
            .footer-links{display:grid;grid-template-columns:repeat(5,1fr);gap:20px;padding:20px 0}.footer-links details{border-bottom:none}.footer-links summary{pointer-events:none;font-weight:600}.footer-links summary::after{display:none}.footer-links details[open] .links-list,.footer-links .links-list{display:block!important;padding-bottom:0}.footer-shop-info{border-bottom:none}.footer-locale{flex-direction:row;justify-content:flex-start}.footer-bottom{border-top:1px solid var(--border-color)}
        }


        /* Apple-style fade-up on scroll */
.apple-fade-up{
  opacity:0;
  transform:translateY(32px);
  transition:opacity .6s cubic-bezier(.4,0,.2,1),transform .6s cubic-bezier(.4,0,.2,1);
}
.apple-fade-up.reveal{
  opacity:1;
  transform:none;
}
/* Use SF Pro as primary font */
body{font-family:'SF Pro Display',-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;}