/* ═══════════════════════════════════════════════════════════════
   ENTERPRISE PDM — LANDING PAGE STYLESHEET
   Companion to style.css — applies only to .landing-page body
   ═══════════════════════════════════════════════════════════════ */

:root {
    --lp-bg:          #050510;
    --lp-surface:     #0d0d1f;
    --lp-card:        #111130;
    --lp-border:      #1a1a3a;
    --lp-border-soft: #1e2a4a;
    --lp-cyan:        #00d4ff;
    --lp-cyan-dim:    rgba(0, 212, 255, 0.15);
    --lp-cyan-glow:   rgba(0, 212, 255, 0.08);
    --lp-purple:      #7c3aed;
    --lp-purple-dim:  rgba(124, 58, 237, 0.15);
    --lp-red:         #ef4444;
    --lp-red-dim:     rgba(239, 68, 68, 0.12);
    --lp-amber:       #f59e0b;
    --lp-amber-dim:   rgba(245, 158, 11, 0.12);
    --lp-green:       #22c55e;
    --lp-green-dim:   rgba(34, 197, 94, 0.12);
    --lp-blue:        #3b82f6;
    --lp-blue-dim:    rgba(59, 130, 246, 0.12);
    --lp-google:      #4285f4;
    --lp-google-dim:  rgba(66, 133, 244, 0.12);
    --lp-text:        #ffffff;
    --lp-text-dim:    #94a3b8;
    --lp-text-muted:  #475569;
}

/* ── Reset for landing page body ── */
body.landing-page {
    background: var(--lp-bg);
    overflow-x: hidden;
}

/* ════════════════════════════════
   NAVBAR
   ════════════════════════════════ */
.lp-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 64px;
    height: 72px;
    background: rgba(5, 5, 16, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--lp-border);
}

.lp-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.lp-logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--lp-cyan), var(--lp-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    color: #fff;
    flex-shrink: 0;
}

.lp-logo span {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #fff;
}

.lp-nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.lp-nav-link {
    color: var(--lp-text-dim);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}
.lp-nav-link:hover { color: #fff; }

.lp-lang-btn {
    padding: 6px 14px;
    border: 1px solid var(--lp-border);
    border-radius: 20px;
}

/* Dropdown */
.lp-dropdown { position: relative; }
.lp-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(13, 13, 31, 0.97);
    border: 1px solid var(--lp-border);
    border-radius: 10px;
    padding: 8px 0;
    min-width: 180px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    z-index: 10;
}
.lp-dropdown:hover .lp-dropdown-menu { display: block; }
.lp-dropdown-item {
    display: block;
    padding: 10px 18px;
    color: var(--lp-text-dim);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s, background 0.2s;
}
.lp-dropdown-item:hover { color: var(--lp-cyan); background: var(--lp-cyan-glow); }

.lp-nav-actions { display: flex; align-items: center; gap: 12px; }

.lp-btn-outline {
    padding: 9px 22px;
    border-radius: 8px;
    border: 1px solid var(--lp-cyan);
    color: var(--lp-cyan);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s;
}
.lp-btn-outline:hover { background: var(--lp-cyan-dim); }

.lp-btn-gradient {
    padding: 9px 22px;
    border-radius: 8px;
    background: linear-gradient(90deg, var(--lp-cyan), var(--lp-purple));
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: opacity 0.2s;
}
.lp-btn-gradient:hover { opacity: 0.88; }

/* ════════════════════════════════
   HERO
   ════════════════════════════════ */
.lp-hero {
    min-height: 760px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 60px;
    gap: 32px;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, #0a0a2e 0%, transparent 100%),
        var(--lp-bg);
    position: relative;
    overflow: hidden;
}

/* Subtle radial glow accents */
.lp-hero::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(0,212,255,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 18px;
    border-radius: 24px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    background: rgba(0, 212, 255, 0.06);
    font-size: 12px;
    font-weight: 500;
    color: var(--lp-cyan);
    position: relative;
    z-index: 1;
}

.lp-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lp-cyan);
    animation: lp-pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes lp-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.6; transform: scale(1.3); }
}

.lp-hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: relative;
    z-index: 1;
}

.lp-title-line1 {
    font-size: clamp(48px, 7vw, 80px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -2px;
    line-height: 1.05;
    margin: 0;
}

.lp-title-line2 {
    font-size: clamp(48px, 7vw, 80px);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.05;
    margin: 0;
    background: linear-gradient(90deg, var(--lp-cyan), var(--lp-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lp-hero-subtitle {
    max-width: 680px;
    font-size: 18px;
    color: var(--lp-text-dim);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.lp-hero-ctas {
    display: flex;
    gap: 16px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.lp-cta-primary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    background: linear-gradient(90deg, var(--lp-cyan), #0077aa);
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: opacity 0.2s, transform 0.2s;
    box-shadow: 0 8px 24px rgba(0,212,255,0.25);
}
.lp-cta-primary:hover { opacity: 0.88; transform: translateY(-2px); }

.lp-cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.04);
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.2s, border-color 0.2s;
}
.lp-cta-secondary:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); }

/* Hero Stats */
.lp-hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 16px;
    position: relative;
    z-index: 1;
}

.lp-stat { text-align: center; }
.lp-stat-value { font-size: 24px; font-weight: 700; margin-bottom: 4px; }
.lp-stat-label { font-size: 11px; color: var(--lp-text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
.lp-stat-divider { width: 1px; height: 40px; background: var(--lp-border); }

.lp-cyan  { color: var(--lp-cyan); }
.lp-green { color: var(--lp-green); }
.lp-red   { color: var(--lp-red); }
.lp-amber { color: var(--lp-amber); }
.lp-purple { color: var(--lp-purple); }
.lp-blue  { color: var(--lp-blue); }
.lp-google { color: var(--lp-google); }

/* ════════════════════════════════
   TRUST BAR
   ════════════════════════════════ */
.lp-trust-bar {
    background: var(--lp-surface);
    border-top: 1px solid var(--lp-border);
    border-bottom: 1px solid var(--lp-border);
    padding: 20px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.lp-trust-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--lp-text-muted);
    text-transform: uppercase;
    margin: 0;
}

.lp-trust-logos {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.lp-trust-logos span {
    font-size: 14px;
    font-weight: 700;
    color: var(--lp-text-dim);
}

.lp-trust-sep { color: var(--lp-border); font-size: 18px; }

/* ════════════════════════════════
   SECTIONS (shared)
   ════════════════════════════════ */
.lp-section {
    padding: 80px 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 56px;
}

.lp-section-dark    { background: var(--lp-bg); }
.lp-section-surface { background: var(--lp-surface); }

.lp-section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    max-width: 720px;
}

.lp-section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: #fff;
    margin: 0;
    letter-spacing: -1px;
}

.lp-section-subtitle {
    font-size: 16px;
    color: var(--lp-text-dim);
    line-height: 1.65;
    margin: 0;
}

/* Tags */
.lp-tag {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.lp-tag-cyan   { background: rgba(0,212,255,0.12);  color: var(--lp-cyan); }
.lp-tag-purple { background: rgba(124,58,237,0.12); color: var(--lp-purple); }
.lp-tag-red    { background: rgba(239,68,68,0.12);  color: var(--lp-red); }
.lp-tag-amber  { background: rgba(245,158,11,0.12); color: var(--lp-amber); }
.lp-tag-green  { background: rgba(34,197,94,0.12);  color: var(--lp-green); }

/* ════════════════════════════════
   4-LAYER ARCHITECTURE
   ════════════════════════════════ */
.lp-layers {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 1100px;
}

.lp-layer {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 28px 32px;
    border-radius: 14px;
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    transition: transform 0.2s, box-shadow 0.2s;
}
.lp-layer:hover { transform: translateX(6px); }

.lp-layer-red    { border-color: rgba(239,68,68,0.25); }
.lp-layer-amber  { border-color: rgba(245,158,11,0.25); }
.lp-layer-cyan   { border-color: rgba(0,212,255,0.25); }
.lp-layer-purple { border-color: rgba(124,58,237,0.25); }

.lp-layer-red:hover    { box-shadow: 0 8px 32px rgba(239,68,68,0.1); }
.lp-layer-amber:hover  { box-shadow: 0 8px 32px rgba(245,158,11,0.1); }
.lp-layer-cyan:hover   { box-shadow: 0 8px 32px rgba(0,212,255,0.1); }
.lp-layer-purple:hover { box-shadow: 0 8px 32px rgba(124,58,237,0.1); }

.lp-layer-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 90px;
}

.lp-layer-tag {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 3px;
}

.lp-layer-name { font-size: 13px; font-weight: 600; }

.lp-layer-content { flex: 1; }
.lp-layer-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}
.lp-layer-desc {
    font-size: 13px;
    color: var(--lp-text-dim);
    line-height: 1.6;
    margin: 0;
}

.lp-layer-icon {
    font-size: 28px;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.lp-icon-red    { background: var(--lp-red-dim); }
.lp-icon-amber  { background: var(--lp-amber-dim); }
.lp-icon-cyan   { background: var(--lp-cyan-dim); }
.lp-icon-purple { background: var(--lp-purple-dim); }

/* ════════════════════════════════
   8-AGENT MATRIX
   ════════════════════════════════ */
.lp-agent-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: 100%;
    max-width: 1200px;
}

.lp-agent-card {
    background: var(--lp-card);
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.lp-agent-card:hover {
    border-color: rgba(0,212,255,0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

.lp-agent-card-leader {
    border-color: rgba(124,58,237,0.35);
    background: linear-gradient(135deg, #111130, #1a0a3e);
}
.lp-agent-card-leader:hover { border-color: rgba(124,58,237,0.6); }

.lp-agent-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lp-agent-icon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.lp-agent-icon-cyan   { background: var(--lp-cyan-dim);   color: var(--lp-cyan); }
.lp-agent-icon-amber  { background: var(--lp-amber-dim);  color: var(--lp-amber); }
.lp-agent-icon-red    { background: var(--lp-red-dim);    color: var(--lp-red); }
.lp-agent-icon-green  { background: var(--lp-green-dim);  color: var(--lp-green); }
.lp-agent-icon-blue   { background: var(--lp-blue-dim);   color: var(--lp-blue); }
.lp-agent-icon-google { background: var(--lp-google-dim); color: var(--lp-google); }
.lp-agent-icon-purple { background: var(--lp-purple-dim); color: var(--lp-purple); }

.lp-agent-id   { font-size: 9px; font-weight: 700; letter-spacing: 0.5px; margin-bottom: 2px; }
.lp-agent-name { font-size: 13px; font-weight: 600; color: #fff; }

.lp-agent-desc {
    font-size: 12px;
    color: var(--lp-text-dim);
    line-height: 1.55;
    margin: 0;
    flex: 1;
}

.lp-agent-chip {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    width: fit-content;
}
.lp-chip-cyan   { background: rgba(0,212,255,0.1);  color: var(--lp-cyan); }
.lp-chip-amber  { background: rgba(245,158,11,0.1); color: var(--lp-amber); }
.lp-chip-red    { background: rgba(239,68,68,0.1);  color: var(--lp-red); }
.lp-chip-green  { background: rgba(34,197,94,0.1);  color: var(--lp-green); }
.lp-chip-blue   { background: rgba(59,130,246,0.1); color: var(--lp-blue); }
.lp-chip-google { background: rgba(66,133,244,0.1); color: var(--lp-google); }
.lp-chip-purple { background: rgba(124,58,237,0.1); color: var(--lp-purple); }

/* Debate Flow */
.lp-agent-flow {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--lp-card);
    border: 1px solid var(--lp-border);
    border-radius: 10px;
    padding: 14px 24px;
    width: 100%;
    max-width: 1200px;
    flex-wrap: wrap;
}

.lp-flow-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--lp-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.lp-flow-steps {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.lp-flow-steps span {
    font-size: 11px;
    font-weight: 600;
    color: var(--lp-text-dim);
}

.lp-flow-arrow { color: var(--lp-text-muted) !important; }

.lp-flow-final {
    color: var(--lp-purple) !important;
    font-weight: 700 !important;
}

/* ════════════════════════════════
   FEATURE HIGHLIGHTS
   ════════════════════════════════ */
.lp-feat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 1200px;
}

.lp-feat-card {
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: 14px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.lp-feat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0,212,255,0.3);
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.lp-feat-icon {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.lp-feat-icon-red    { background: var(--lp-red-dim); }
.lp-feat-icon-cyan   { background: var(--lp-cyan-dim); }
.lp-feat-icon-purple { background: var(--lp-purple-dim); }
.lp-feat-icon-green  { background: var(--lp-green-dim); }

.lp-feat-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.lp-feat-desc {
    font-size: 14px;
    color: var(--lp-text-dim);
    line-height: 1.65;
    margin: 0;
}

/* ════════════════════════════════
   CTA SECTION
   ════════════════════════════════ */
.lp-cta-section {
    position: relative;
    padding: 100px 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center;
    background: linear-gradient(135deg, #0a0a2e 0%, #1a0a3e 50%, #050510 100%);
    overflow: hidden;
}

.lp-cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(124,58,237,0.2) 0%, transparent 70%);
    pointer-events: none;
}

.lp-cta-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    color: #fff;
    max-width: 800px;
    margin: 0;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.lp-cta-desc {
    font-size: 16px;
    color: var(--lp-text-dim);
    max-width: 580px;
    line-height: 1.65;
    margin: 0;
    position: relative;
    z-index: 1;
}

.lp-cta-btns {
    display: flex;
    gap: 16px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.lp-cta-large {
    font-size: 16px !important;
    padding: 16px 40px !important;
}

/* Override gradient for CTA primary */
.lp-cta-section .lp-cta-primary {
    background: linear-gradient(90deg, var(--lp-cyan), var(--lp-purple));
    box-shadow: 0 12px 32px rgba(124,58,237,0.35);
}

/* ════════════════════════════════
   FOOTER
   ════════════════════════════════ */
.lp-footer {
    background: #050510;
    border-top: 1px solid var(--lp-border);
    padding: 56px 120px 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.lp-footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.lp-footer-brand { display: flex; flex-direction: column; gap: 14px; }

.lp-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lp-footer-logo-dot {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: linear-gradient(135deg, var(--lp-cyan), var(--lp-purple));
    flex-shrink: 0;
}

.lp-footer-logo span {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
}

.lp-footer-tagline {
    font-size: 13px;
    color: var(--lp-text-muted);
    line-height: 1.6;
    margin: 0;
    max-width: 240px;
}

.lp-footer-links {
    display: flex;
    gap: 64px;
}

.lp-footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lp-footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
}

.lp-footer-col a {
    font-size: 13px;
    color: var(--lp-text-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.lp-footer-col a:hover { color: var(--lp-text-dim); }

.lp-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid var(--lp-border);
    gap: 20px;
    flex-wrap: wrap;
}

.lp-footer-bottom span {
    font-size: 12px;
    color: var(--lp-text-muted);
}

/* ════════════════════════════════
   RESPONSIVE
   ════════════════════════════════ */
@media (max-width: 1280px) {
    .lp-nav { padding: 0 40px; }
    .lp-section { padding: 64px 60px; }
    .lp-agent-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-feat-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-footer { padding: 48px 60px 0; }
    .lp-cta-section { padding: 80px 60px; }
}

@media (max-width: 960px) {
    .lp-nav { padding: 0 24px; }
    .lp-nav-links { display: none; }
    .lp-hero { padding: 60px 24px; }
    .lp-hero-stats { flex-wrap: wrap; gap: 24px; justify-content: center; }
    .lp-stat-divider { display: none; }
    .lp-section { padding: 56px 24px; }
    .lp-agent-grid { grid-template-columns: 1fr 1fr; }
    .lp-feat-grid { grid-template-columns: 1fr 1fr; }
    .lp-layers { max-width: 100%; }
    .lp-layer { flex-wrap: wrap; }
    .lp-footer { padding: 40px 24px 0; }
    .lp-footer-top { flex-direction: column; }
    .lp-footer-links { flex-wrap: wrap; gap: 32px; }
    .lp-cta-section { padding: 60px 24px; }
    .lp-cta-btns { flex-direction: column; }
}

@media (max-width: 600px) {
    .lp-agent-grid { grid-template-columns: 1fr; }
    .lp-feat-grid { grid-template-columns: 1fr; }
    .lp-hero-ctas { flex-direction: column; }
    .lp-hero-badge { font-size: 10px; text-align: center; }
    .lp-footer-bottom { flex-direction: column; text-align: center; }
}

 / *   C y c l e   1   F i x :   A f t e r   T e a   L i n k   * / 
 . l p - t e a - l i n k   { 
         c o l o r :   # f 5 9 e 0 b ;   / *   A m b e r   * / 
         f o n t - w e i g h t :   6 0 0 ; 
 } 
 . l p - t e a - l i n k : h o v e r   { 
         c o l o r :   # f c d 3 4 d ;   / *   L i g h t   A m b e r   * / 
         t e x t - s h a d o w :   0   0   8 p x   r g b a ( 2 4 5 ,   1 5 8 ,   1 1 ,   0 . 5 ) ; 
 } 
  
 
 / *   C y c l e   2   F i x :   P u l s e   A n i m a t i o n   &   R e s p o n s i v e   A d j u s t m e n t s   * / 
 @ k e y f r a m e s   l p - p u l s e - g l o w   { 
         0 %   {   b o x - s h a d o w :   0   0   0   0   r g b a ( 0 ,   2 1 2 ,   2 5 5 ,   0 . 4 ) ;   } 
         7 0 %   {   b o x - s h a d o w :   0   0   0   1 0 p x   r g b a ( 0 ,   2 1 2 ,   2 5 5 ,   0 ) ;   } 
         1 0 0 %   {   b o x - s h a d o w :   0   0   0   0   r g b a ( 0 ,   2 1 2 ,   2 5 5 ,   0 ) ;   } 
 } 
 
 . l p - c t a - p r i m a r y   { 
         a n i m a t i o n :   l p - p u l s e - g l o w   2 s   i n f i n i t e ; 
 } 
 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
         . l p - n a v - l i n k s   { 
                 d i s p l a y :   n o n e ;   / *   s i m p l e   m o b i l e   f i x ,   w o u l d   i d e a l l y   b e   a   h a m b u r g e r   m e n u   * / 
         } 
 } 
  
 
 / *   C y c l e   3   F i x :   S p a c i n g   a d j u s t m e n t s   f o r   H e r o   s e c t i o n   * / 
 . l p - h e r o   { 
         p a d d i n g - b o t t o m :   2 0 p x ;   / *   R e d u c e d   f r o m   d e f a u l t   t o   b r i n g   t r u s t   l o g o s   u p   * / 
 } 
  
 