:root {
    --bg-primary: #0b0704;
    /* Ultra Deep Warm Black/Brown */
    --bg-secondary: #170f08;
    /* Dark Amber-Grey */
    --bg-card: rgba(28, 18, 10, 0.45);
    /* Acrylic semi-transparent amber glass */
    --bg-card-hover: rgba(38, 25, 14, 0.65);
    --border-color: rgba(255, 255, 255, 0.05);
    --border-hover: rgba(217, 125, 4, 0.25);

    --accent-primary: #d97d24;
    /* Premium copper orange from AppIcon */
    --accent-glow: rgba(217, 125, 36, 0.3);
    /* Amber Glow */
    --accent-gradient: linear-gradient(90deg, #d97d24 0%, #ff9f0a 50%, #b25300 100%);

    --text-primary: #fbf9f7;
    --text-secondary: #d3c4b4;
    --text-muted: #806f5f;

    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", sans-serif;
    --font-mono: "SF Mono", "JetBrains Mono", Menlo, Monaco, monospace;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset & Smooth Scroll */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Soft Premium Ambient Glows */
.glow-orb {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    filter: blur(150px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
    mix-blend-mode: screen;
}

.glow-1 {
    background: radial-gradient(circle, #d97d24 0%, transparent 70%);
    top: -200px;
    right: -100px;
}

.glow-2 {
    background: radial-gradient(circle, #ff9f0a 0%, transparent 70%);
    top: 500px;
    left: -200px;
}

.glow-3 {
    background: radial-gradient(circle, #b25300 0%, transparent 70%);
    bottom: -100px;
    right: -150px;
}

/* Header & Blur Navigation */
header {
    position: fixed;
    top: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 4rem);
    max-width: 1100px;
    z-index: 100;
    backdrop-filter: blur(20px) saturate(190%);
    -webkit-backdrop-filter: blur(20px) saturate(190%);
    background-color: rgba(23, 15, 8, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

header:hover {
    background-color: rgba(23, 15, 8, 0.6);
    border-color: rgba(217, 125, 36, 0.3);
    box-shadow: 0 16px 45px rgba(217, 125, 36, 0.12);
}

.nav-container {
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: inherit;
}

.nav-logo {
    width: 28px;
    height: 28px;
    border-radius: 7px;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.4px;
    color: #ffffff;
}

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.88rem;
    position: relative;
    padding: 0.25rem 0;
    transition: var(--transition);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: linear-gradient(90deg, rgba(217, 125, 36, 0) 0%, var(--accent-primary) 50%, rgba(217, 125, 36, 0) 100%);
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 2px;
}

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

nav a:hover::after {
    width: 100%;
}

/* Button UI System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, #d97d24 0%, #ff9f0a 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 14px var(--accent-glow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #b25300 0%, #e08b1b 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(217, 125, 36, 0.35);
}

.btn-glass {
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background-color: rgba(255, 255, 255, 0.07);
    border-color: var(--border-hover);
    transform: translateY(-1px);
}

.hidden {
    display: none !important;
}

/* Interactive Download System */
.download-btn-interactive {
    position: relative;
    overflow: hidden;
    min-width: 270px;
    transition: var(--transition);
}

.btn-content {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
}

.svg-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 20px;
    height: 20px;
}

.download-arrow {
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.download-btn-interactive:hover .download-arrow {
    transform: translateY(2px);
}

.download-loader {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-top-color: currentColor;
    border-radius: 50%;
    position: absolute;
    opacity: 0;
}

.check-svg {
    position: absolute;
    animation: svgScale 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes svgScale {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes button-loading-spinner {
    from {
        transform: rotate(0deg);
        opacity: 1;
    }
    to {
        transform: rotate(360deg);
        opacity: 1;
    }
}

/* Main Container Layout */
main {
    width: 100%;
    position: relative;
    z-index: 2;
    background-color: var(--bg-primary);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.95);
    padding: 0;
    max-width: none;
    margin: 0;
}

.hero-section,
.features-section,
.bypass-guide-section {
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.hero-section {
    min-height: calc(90vh - 60px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    padding: 10rem 2rem 6.5rem 2rem;
}

/* Load Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle,
.hero-section h1,
.hero-description,
.hero-actions-container,
.hero-stats {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--accent-primary);
    margin-bottom: 0.75rem;
    animation-delay: 0.1s;
}

.hero-section h1 {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -2px;
    margin-bottom: 1.25rem;
    animation-delay: 0.2s;
}

.hero-title-text {
    background: linear-gradient(180deg, #ffffff 30%, #a5a5a7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.accent-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-right: 0.05em;
}

.hero-description {
    font-size: 1.12rem;
    color: var(--text-secondary);
    margin-bottom: 2.25rem;
    max-width: 480px;
    line-height: 1.65;
    animation-delay: 0.3s;
}

.hero-actions-container {
    animation-delay: 0.4s;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-actions-bottom {
    margin-bottom: 3rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    gap: 0.4rem;
    align-items: center;
}

.hero-actions-bottom a {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-actions-bottom a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: var(--accent-primary);
    opacity: 0;
    transform: scaleX(0.8);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    pointer-events: none;
}

.hero-actions-bottom a:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

/* Homebrew Installation Box */
.brew-install-container {
    background-color: rgba(13, 13, 25, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.25rem;
    margin-bottom: 3rem;
    max-width: 450px;
    backdrop-filter: blur(10px);
}

.brew-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.brew-logo {
    color: #ff9f0a;
}

.brew-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 0.6rem 1rem;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    transition: var(--transition);
}

.brew-code-wrapper {
    display: flex;
    gap: 0.5rem;
}

.brew-code-keyword {
    color: #ff007f;
    font-weight: 700;
}

.brew-code-text {
    color: #f5f5f9;
}

.brew-copy-btn, .terminal-copy-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 600;
    transition: var(--transition);
}

.brew-copy-btn:hover, .terminal-copy-btn:hover {
    color: #ffffff;
}

.hero-stats {
    display: flex;
    gap: 3.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.75rem;
    animation-delay: 0.5s;
    max-width: 450px;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-num {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.4px;
    color: #ffffff;
}

.stat-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 0.15rem;
}

.stat-date {
    font-size: 0.72rem;
    color: var(--text-secondary);
    opacity: 0.65;
    margin-top: 0.15rem;
    font-weight: 500;
}

/* Beautiful Showcase (Hero Right) */
.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 580px;
    z-index: 2;
}

.hero-screenshot-wrapper {
    position: relative;
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.9);
    overflow: hidden;
    transform: perspective(1200px) rotateY(-8deg) rotateX(3deg);
    transition: var(--transition);
    z-index: 2;
    background: #000;
}

.hero-screenshot-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.03) 50%, rgba(217, 125, 36, 0.25) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 3;
    transition: var(--transition);
}

.hero-screenshot-wrapper:hover {
    transform: perspective(1200px) rotateY(-2deg) rotateX(1deg) scale(1.04);
    box-shadow: 0 45px 110px rgba(0, 0, 0, 0.95);
}

.hero-screenshot-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
}

.hero-screenshot-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140%;
    height: 140%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(217, 125, 36, 0.22) 0%, rgba(255, 159, 10, 0.12) 30%, rgba(178, 83, 0, 0.04) 55%, transparent 70%);
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
    animation: slowGlowPulse 8s infinite alternate ease-in-out;
}

@keyframes slowGlowPulse {
    0% {
        opacity: 0.65;
        transform: translate(-50%, -50%) scale(0.92);
    }
    100% {
        opacity: 0.95;
        transform: translate(-50%, -50%) scale(1.08);
    }
}

.floating-badge {
    position: absolute;
    padding: 0.65rem 1.15rem;
    background-color: rgba(13, 13, 25, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    z-index: 5;
    pointer-events: none;
    transition: var(--transition);
}

.floating-badge .badge-icon {
    width: 14px;
    height: 14px;
    color: var(--accent-primary);
}

.badge-top-left {
    top: 8%;
    left: -8%;
    transform: perspective(1200px) translateZ(30px) rotateY(-10deg);
    animation: badgeEntranceTopLeft 1.2s cubic-bezier(0.16, 1, 0.3, 1) both, floatTopLeft 6s infinite alternate ease-in-out 1.2s;
}

.badge-bottom-right {
    bottom: 10%;
    right: -8%;
    transform: perspective(1200px) translateZ(40px) rotateY(-10deg);
    animation: badgeEntranceBottomRight 1.2s cubic-bezier(0.16, 1, 0.3, 1) both, floatBottomRight 6s infinite alternate ease-in-out 1.2s;
}

@keyframes badgeEntranceTopLeft {
    from { opacity: 0; transform: perspective(1200px) translateZ(30px) rotateY(-10deg) translateY(30px); }
    to { opacity: 1; transform: perspective(1200px) translateZ(30px) rotateY(-10deg) translateY(0); }
}

@keyframes badgeEntranceBottomRight {
    from { opacity: 0; transform: perspective(1200px) translateZ(40px) rotateY(-10deg) translateY(30px); }
    to { opacity: 1; transform: perspective(1200px) translateZ(40px) rotateY(-10deg) translateY(0); }
}

@keyframes floatTopLeft {
    0% { transform: perspective(1200px) translateZ(30px) rotateY(-10deg) translateY(0); }
    100% { transform: perspective(1200px) translateZ(30px) rotateY(-10deg) translateY(-12px); }
}

@keyframes floatBottomRight {
    0% { transform: perspective(1200px) translateZ(40px) rotateY(-10deg) translateY(0); }
    100% { transform: perspective(1200px) translateZ(40px) rotateY(-10deg) translateY(12px); }
}

/* Features Section */
.features-section {
    position: relative;
    padding: 8rem 0;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2rem;
    right: 2rem;
    height: 1px;
    background: linear-gradient(to right, rgba(0, 242, 254, 0) 0%, rgba(0, 242, 254, 0.5) 20%, var(--accent-primary) 50%, rgba(0, 242, 254, 0.5) 80%, rgba(0, 242, 254, 0) 100%);
}

.section-header {
    max-width: 600px;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.8px;
    margin-bottom: 0.75rem;
    background: linear-gradient(180deg, #ffffff 40%, #c4c4c6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 2.5rem 2rem;
    backdrop-filter: blur(20px);
    transition: var(--transition);
}

.feature-card:hover {
    background-color: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 242, 254, 0.05);
}

.feature-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.box-orange { background: rgba(217, 125, 36, 0.1); color: #d97d24; }
.box-gold { background: rgba(255, 159, 10, 0.1); color: #ff9f0a; }
.box-amber { background: rgba(217, 125, 36, 0.1); color: #d97d24; }
.box-green { background: rgba(48, 209, 88, 0.1); color: #30d158; }
.box-red { background: rgba(255, 69, 58, 0.1); color: #ff453a; }
.box-teal { background: rgba(100, 210, 255, 0.1); color: #d97d24; }

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Gatekeeper Bypass Guide */
.bypass-guide-section {
    position: relative;
    padding: 8rem 0;
}

.bypass-guide-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2rem;
    right: 2rem;
    height: 1px;
    background: linear-gradient(to right, rgba(0, 122, 255, 0) 0%, rgba(0, 242, 254, 0.4) 20%, var(--accent-primary) 50%, rgba(0, 242, 254, 0.4) 80%, rgba(0, 122, 255, 0) 100%);
}

.bypass-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3.5rem;
}

.bypass-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    backdrop-filter: blur(20px);
    transition: var(--transition);
}

.highlight-border {
    border-color: rgba(0, 242, 254, 0.25);
    box-shadow: 0 15px 45px rgba(0, 242, 254, 0.03);
}

.bypass-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.bypass-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent-gradient);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
}

.bypass-header h3 {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.4px;
}

.bypass-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Terminal Design */
.terminal-box {
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.terminal-header {
    background: rgba(255, 255, 255, 0.02);
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.t-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    margin-right: 0.4rem;
}

.t-red { background: #ff5f56; }
.t-yellow { background: #ffbd2e; }
.t-green { background: #27c93f; }

.terminal-title {
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    margin-left: auto;
}

.terminal-body {
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 0.88rem;
    color: #30d158;
}

.bypass-tip {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
    display: block;
}

.bypass-tip strong {
    color: var(--text-secondary);
}

.bypass-tip code {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.1rem 0.3rem;
    border-radius: 4px;
    font-family: var(--font-mono);
}

/* Graphic List */
.bypass-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.bypass-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.list-num {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-primary);
    flex-shrink: 0;
}

.bypass-list li strong {
    color: #ffffff;
}

.bypass-list li code {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.1rem 0.3rem;
    border-radius: 4px;
    font-family: var(--font-mono);
}

/* Footer styling */
footer {
    background-color: #020204;
    border-top: 1px solid var(--border-color);
    padding: 5rem 0;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
}

.footer-logo-img {
    width: 28px;
    height: 28px;
    border-radius: 7px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 2rem;
}

.footer-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    max-width: 400px;
    line-height: 1.5;
}

.credits {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: right;
    line-height: 1.6;
}

.pingvi-link {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.pingvi-link:hover {
    color: #007aff;
}

/* Responsive queries */
@media (max-width: 968px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 4rem;
        padding-top: 8rem;
        text-align: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-actions-bottom {
        justify-content: center;
    }
    
    .brew-install-container {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-stats {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-right {
        order: -1;
    }
    
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .bypass-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header {
        width: calc(100% - 2rem);
    }
    
    .nav-container {
        padding: 0.75rem 1.25rem;
    }
    
    nav {
        gap: 1rem;
    }
    
    .hero-section h1 {
        font-size: 2.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .credits {
        text-align: center;
        width: 100%;
    }
}
