:root {
    --primary-blue: #2f4bd4;
    --hero-blue: #1b33b0;
    --dark-text: #000000;
    --charcoal: #212121;
    --card-bg: #f7f5f2;
    --white: #ffffff;
    --site-max-width: 1050px; 
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Public Sans', sans-serif;
    font-weight: 400 !important;
    font-optical-sizing: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility; 
    font-kerning: normal;
}

body {
    background-color: var(--white);
    color: var(--dark-text);
    overflow-x: hidden;
}

.hero-content p, 
.btn,
.legend-item span,
.game-info p,
.game-info h2,
.game-info h3,
.feature-item p,
.feature-item h4 {
    font-weight: 400 !important;
    letter-spacing: -0.01em; 
}

/* Standardized Layout Containers */
.nav-bar,
.hero-content,
.pipeline-section,
.lead-banner-container,
.value-props,
.footer-legal-container {
    max-width: var(--site-max-width) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100%;
}

.nav-bar {
    background: transparent;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
}

.punch-logo {
    height: 20px;
    width: auto;
    display: block;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-icon {
    height: 24px;
    width: 24px;
    object-fit: contain;
    display: block;
}

.btn {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 400 !important;
    cursor: pointer;
    transition: opacity 0.25s ease, transform 0.2s ease;
}

.btn:hover {
    opacity: 0.85;
}

.nav-btn-light {
    background: var(--white);
    color: var(--charcoal);
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 4px 4px 18px;
    gap: 12px;
}

.nav-btn-light:hover .btn-icon {
    transform: translateX(2px);
    transition: transform 0.2s ease;
}

.nav-btn-text {
    background: var(--white);
    color: var(--charcoal);
    padding: 8px 18px;
}

/* Hero Background (Empty Sky/Grass Base) */
.hero-section {
    position: relative;
    background-image: url('../images/header-bg-empty.png');
    background-size: cover; 
    background-position: center bottom;
    background-repeat: repeat-x; 
    color: var(--white);
    padding: 120px 0 450px;
    text-align: center;
    margin-top: -80px;
}

.hero-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 400 !important;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    max-width: 850px;
}

.hero-content p {
    font-size: 1rem;
    font-weight: 400 !important;
    opacity: 0.9;
    max-width: 680px;
    margin-bottom: 28px;
    line-height: 1.5;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.dark-cta {
    background: var(--charcoal);
    color: var(--white);
    padding: 10px 22px;
    min-width: 200px;
    text-align: center;
}

/* Platform & Dog Graphic Object */
#hero-platform-dog {
    position: absolute;
    bottom: 185px;                
    left: 45%;                    
    transform: translateX(-50%);
    max-width: none !important;   
    width: 2250px;                
    height: auto;
    object-fit: contain;
    z-index: 3;
    pointer-events: none;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}

/* Hero Interactive Objects */
.hero-interactive-obj {
    position: absolute;
    cursor: pointer;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    z-index: 5;
    user-select: none;
}

/* Fire Hydrant - Locked statically to center axis */
#hero-hydrant {
    bottom: 0px;                  /* Grounded flush to bottom floor */
    left: 50%;                    /* Anchored to center axis */
    margin-left: -520px;          /* Fixed pixel distance left of center */
    height: 220px;                /* Upscaled height */
    width: auto;
    transform-origin: bottom center;
}

/* SPAM Folder - Permanently locked to center axis (Stops responsive drifting) */
#hero-spam {
    bottom: 60px;                
    left: 41.0%;                    /* Anchored to center axis */
    margin-left: 380px;          /* Fixed pixel distance right of center */
    right: auto;                  
    height: 80px;                 
    width: auto;
    transition: transform 0.08s ease-in-out;
}

#hero-spam.snap-jump {
    transform: translateY(-18px);
}

/* Pipeline Feature Section - Centered Dividers */
.pipeline-section {
    padding: 140px 0;
    text-align: center;
}

.pipeline-section h2 {
    font-size: 1.8rem;
    font-weight: 400 !important;
    margin-bottom: 48px;
    line-height: 1.25;
}

.feature-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
    position: relative;
    padding-right: 0;
}

.feature-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    height: 70%;
    width: 1px;
    background-color: #e0e0e0;
}

.feature-item img {
    width: 75px; 
    height: auto;
    object-fit: contain;
    image-rendering: pixelated;
    margin-top: 2px; 
}

.feature-item img[src*="icon-bone"] {
    width: 82px; 
    height: auto;
    margin-top: 10px; 
}

.feature-item img[src*="icon-bolt"] {
    width: auto;
    height: 60px; 
    margin-top: 2px; 
}

.feature-item h4 {
    font-size: 0.75rem;
    font-weight: 400 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 0.8rem;
    font-weight: 400 !important;
    color: #555;
    line-height: 1.4;
    max-width: 220px;
}

/* Lead Banner Container */
.lead-banner-container {
    margin-bottom: 140px; 
    padding: 0;
}

.lead-banner {
    background-color: var(--primary-blue);
    border-radius: 16px;
    padding: 32px 36px 32px 240px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    position: relative;
    overflow: visible; 
}

.lead-dog-face {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 120%; 
    width: auto;
    object-fit: contain;
    object-position: bottom left;
    transform-origin: bottom left;
    image-rendering: pixelated;
    cursor: pointer;
    transition: none !important; 
}

.lead-dog-face:hover {
    transform: scale(1.02);
    transition: transform 0.12s ease;
}

.lead-dog-face.frame-2 {
    transition: none !important; 
}

.lead-banner-left {
    display: flex;
    align-items: center;
}

.lead-banner h3 {
    font-size: 1.5rem;
    font-weight: 400 !important;
    line-height: 1.2;
    margin-bottom: 4px;
}

.lead-banner p {
    font-size: 0.85rem;
    font-weight: 400 !important;
    opacity: 0.9;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 280px;
}

.lead-form input {
    padding: 10px 16px;
    border-radius: 999px;
    border: none;
    outline: none;
    font-size: 0.85rem;
    font-weight: 400 !important;
    color: var(--dark-text);
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group input {
    width: 100%;
    padding-right: 40px;
}

.input-group button {
    position: absolute;
    right: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.submit-arrow-icon {
    width: 28px;
    height: 28px;
    display: block;
}

/* Value Props Section */
.value-props {
    margin-bottom: 140px;
    padding: 0;
}

.eyebrow-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.eyebrow-icon {
    height: 18px;
    width: auto;
}

.section-tag {
    font-size: 0.75rem;
    font-weight: 400 !important;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #666666;
}

.value-props h2 {
    font-size: 2.1rem;
    font-weight: 400 !important;
    max-width: 500px;
    margin: 8px 0;
    line-height: 1.15;
}

.section-sub {
    font-size: 0.9rem;
    font-weight: 400 !important;
    max-width: 500px;
    margin-bottom: 32px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 36px 32px 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 375px; 
}

.card img {
    width: 170px;
    height: 170px;
    object-fit: contain;
    margin: 10px auto auto;
    image-rendering: pixelated;
    transition: transform 0.35s ease-in-out;
}

.card:hover img {
    transform: scale(1.06);
}

.card h3 {
    font-size: 0.85rem;
    font-weight: 400 !important;
    margin-bottom: 12px;
    text-align: left;
    letter-spacing: 0.5px;
}

.card p {
    font-size: 0.85rem;
    font-weight: 400 !important;
    color: #444;
    line-height: 1.5;
    text-align: left;
    max-width: 220px;
}

/* Full-Bleed Edge-to-Edge 40/60 Split Section */
.game-section {
    width: 100vw;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-bottom: 140px; 
    padding: 0;
    background-color: var(--primary-blue);
    border-radius: 0 !important;
    color: var(--white);
    display: grid;
    grid-template-columns: 40% 60%;
    align-items: stretch;
}

.game-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 50px 60px 90px;
}

.game-info h2 {
    font-size: 2.2rem;
    font-weight: 400 !important;
    margin-bottom: 16px;
}

.game-info .lead-text {
    font-size: 1rem;
    font-weight: 400 !important;
    margin-bottom: 16px;
    opacity: 0.95;
}

.game-info p {
    font-size: 0.88rem;
    font-weight: 400 !important;
    opacity: 0.9;
    margin-bottom: 24px;
    line-height: 1.5;
    max-width: 420px; 
}

.primary-btn {
    background-color: var(--white);
    color: var(--charcoal);
    display: inline-block;
    width: 210px;
    text-align: center;
    padding: 11px 18px;
    margin-bottom: 0;
    font-weight: 400 !important;
}

.cta-divider {
    width: 100%;
    max-width: 420px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.25);
    margin-top: 48px;
    margin-bottom: 48px; 
}

.secondary-cta-block h3 {
    font-size: 1.35rem;
    font-weight: 400 !important;
    margin-bottom: 8px;
}

.secondary-cta-block p {
    font-size: 0.88rem;
    font-weight: 400 !important;
    margin-bottom: 14px;
}

.text-link-cta {
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 400 !important;
    text-decoration: underline;
    opacity: 0.95;
    transition: opacity 0.2s ease;
    display: inline-block;
}

.text-link-cta:hover {
    opacity: 1;
}

/* Right Side Game Frame - Seamless 100% Fit */
.game-frame-wrapper {
    background: transparent;
    border-radius: 0 !important;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.slideshow-screen {
    width: 100%;
    flex: 1;
    position: relative;
    background: #111111;
    overflow: hidden;
    padding: 0 !important;
    border-radius: 0 !important;
}

.contained-game-content {
    width: 100%;
    height: 100%;
    position: relative;
    background: #000;
    overflow: hidden;
    border-radius: 0 !important;
    cursor: pointer; 
}

.slides-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 1.2s ease-in-out;
}

.slide-img {
    flex: 0 0 100%; 
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: center;
    display: block;
    image-rendering: pixelated;
    border-radius: 0 !important;
    transform: none !important;
}

/* Legend Bar Anchored at Bottom - Public Sans Regular */
.game-legend-bar {
    background: var(--charcoal);
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: center; 
    gap: 48px; 
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0 !important;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.legend-item img {
    width: auto;
    object-fit: contain;
    image-rendering: pixelated;
}

.legend-item img[src*="icon-bone"] {
    height: 22px;
}

.legend-item img[src*="icon-squirrel"] {
    height: 46px;
    position: relative;
    top: -4px; 
    left: 6px; 
    margin-right: -10px; 
}

.legend-item img[src*="icon-spam"] {
    height: 28px;
    position: relative;
    top: 1px; 
    margin-left: -2px; 
}

.legend-item span {
    font-size: 0.95rem;
    color: var(--white);
    opacity: 0.95;
    font-weight: 400 !important;
}

/* Legal Links Bar */
.footer-legal-container {
    margin-bottom: 12px; 
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 400 !important;
    color: var(--dark-text);
    gap: 20px;
}

.copyright-text {
    opacity: 0.8;
    font-weight: 400 !important;
}

.legal-links {
    display: flex;
    gap: 16px;
    white-space: nowrap;
}

.legal-links a {
    color: var(--dark-text);
    font-weight: 400 !important;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.legal-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Full-Bleed Ground Footer */
.main-footer {
    width: 100%;
    height: 120px;
    background-image: url('../images/artwork-footer.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    display: block;
    margin-bottom: 0;
    image-rendering: pixelated;
}